1
Autre / Re : [Recherche] Scripteur serveur roleplay
« le: 26 Août 2013, 19:51:39 »
Je suis un scripter html / Css, si tu as besoin
skype : florent6001
skype : florent6001
Cette section vous permet de consulter les contributions (messages, sujets et fichiers joints) d'un utilisateur. Vous ne pourrez voir que les contributions des zones auxquelles vous avez accès.
CMD:antenneinconnu(playerid,params[])
{
if(IsPlayerInRangeOfPoint(playerid, 4.0,7548.0078,-242.5435,95.8343))
{
new string[128];
format(string, sizeof(string), "%s: %s",playerid,string);
SendClientMessageToOthers(COLOR_BLUE,string);
}
return 1;
}[/pawn]
[pawn]
public SendClientMessageToOthers(color,const string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) == 1 && PlayerInfo[i][pOthers] == 1)
{SendClientMessage(i, COLOR_BLUE, string);}
}
return 1;
}