03.06.2014, 20:13
Get your mappings first.
Then you can make a public like this.
Then you just added the mappings in the public like this
Then you have to run that public on player connect. Like this.
Then you can make a public like this.
Код:
forward mappings(playerid); //Any name you want
Код:
public mappings(playerid)
{
//mappings here
return 1;
}
Код:
public OnPlayerConnect(playerid)
{
mappings(playerid);
return 1;
}

