geh in deine fn_start in maverick/tuning
und füge das in zeile 21 ein
if (!license_civ_snake) exitWith {hint "Du hast keine Lizens!"};
danach sollte es so aussehen
scriptName "fn_start";
/*--------------------------------------------------------------------
Author: Maverick (ofpectag: MAV)
File: fn_start.sqf
<Maverick Applications>
Written by Maverick Applications (http://www.maverick-apps.de)
You're not allowed to use this file without permission from the author!
--------------------------------------------------------------------*/
#define __filename "fn_start.sqf"
if (isNil "mav_tuning_lastVisit") then {
mav_tuning_lastVisit = -999;
};
if (vehicle player == player) exitWith {hint "You have to be in a vehicle"};
if (driver vehicle player != player) exitWith {hint "You're not the driver of the vehicle!"};
if ((count crew vehicle player) > 1) exitWith {hint "You have to be alone in the vehicle!"};
if (isNil {(vehicle player) getVariable "vehicleID"}) exitWith {hint "The vehicle has to be stored in a garage first before it can be tuned!"};
if (diag_tickTime - mav_tuning_lastVisit < 10) exitWith {hint "You are already visiting the tuning shop!"};
if (!license_civ_snake) exitWith {hint "Du hast keine Lizens!"};