02.11.2016, 08:01
Create a filterscript with this code:
Add it to server.cfg then run the server.
PHP Code:
#include <a_samp>
public OnFilterScriptInit()
{
SetTimer("UnlockServer", 1000, false);
return 1;
}
forward UnlockServer();
public UnlockServer()
{
SendRconCommand("password 0");
return 1;
}