28.05.2013, 22:17
Hello! I've a little problem.
I've got a gamemode, and I'm trying to call a public from the filterscript.
It's like this:
^ In my gamemode.
^ In the filterscript. But it won't work. Thank you for help, regards.
I've got a gamemode, and I'm trying to call a public from the filterscript.
It's like this:
Код:
CMD:start(playerid, p[])
{
CallRemoteFunction("timeToStart", "");
return 1;
}
Код:
forward timeToStart();
public timeToStart()
{
for(new i=0;i<MAX_PLAYERS;i++)
{
SetPlayerPos(i, 3436.7880859375, -1579.4970703125, 17.810886383057);
}
return 1;
}

