06.09.2012, 03:17
How come my ID does not show when is saw soemthing in chat?
Is there a was to change the Map:
And how can i get all the skins?
Is there a was to change the Map:
And how can i get all the skins?
public OnPlayerText(playerid, text[])
{
new pName[MAX_PLAYER_NAME], string[144];
GetPlayerName(playerid, pName,sizeof(pName));
format(string, sizeof(string), "%s[%i]: %s", pName, playerid, text);
printf(string);
SendClientMessageToAll(0xFFFFFFFF, string);
return 0;
}
mapname LS/SF
for(new s = 1; s < 300; s++)
{
AddPlayerClass(s, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
}
Might want to add a check in there - skin ID 74 doesn't exist (at least what the wiki says (i think you skipped CJ's skin ID on purpose (0) so prolly don't need to say anything about that) |
for(new s; s < 300; s++)
{
if(!= 74)
{
AddPlayerClass(s, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
}
}