Hallo zusammen,
euer Schwarmwissen ist mal wieder gefragt. Ich habe folgendes vor.
Per Versionscheck wird die aktuelle Version überprüft.
Jetzt möchte ich gerne dass wenn die Version nicht aktuell ist, dass das Script gestoppt wird.
Ich habe dazu folgenden Command bereits gefunden
-- REGISTER_COMMAND
RegisterCommand(
commandName --[[ string ]],
handler --[[ func ]],
restricted --[[ boolean ]]
)
allerdings ist das ein Command der ja ingame ausgelöst werden muss
Dazu hab ich folgendes stehen
Parameters:
- commandName:
- handler:
- restricted:
The command you want to register.
A handler function that gets called whenever the command is executed.
If this is a server command and you set this to true, then players will need the command.yourCommandName ace permission to execute this command.
Commands registered using this function can also be executed by resources, using the ExecuteCommand
native.
Was soviel heißen soll dass ich mit ExecuteCommand das auslösen kann
dazu folgender Code
Wenn ich also jetzt folgendes mache
erhalte ich allerdings im Log folgendes
Jetzt seid ihr gefragt, wie kann ich dem ganzen jetzt den zugriff geben`?