30.11.2018, 18:51
This is called "local variable", this kinda runs in the name. You can't access a local variable from "OnPlayerConnect" to a command. Because it's closed down in the callback. Create it however outside a callback/function/command, it becomes a global variable, this you can access through the whole script anytime you'd like.
Take a look at this:
SS/Core/Admin/Admin-1CMD.pwn(86) : error 017: undefined symbol "label"
undefined symbol, because it doesn't find "label". Create it on the top of your script as a global, then you are good to go.
Take a look at this:
SS/Core/Admin/Admin-1CMD.pwn(86) : error 017: undefined symbol "label"
undefined symbol, because it doesn't find "label". Create it on the top of your script as a global, then you are good to go.