help this dont work з_з - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: help this dont work з_з (
/showthread.php?tid=149212)
help this dont work з_з -
iJumbo - 21.05.2010
Код:
stock SendMessageToClan(playerid,COLOR,text[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
if(PlayerLevel(playerid) == 10)
{
SendClientMessage(i,COLOR,text);
}
}
}
return 1;
}
AND
Код:
stock SendMessageToRcon(COLOR,text[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
if(if(IsPlayerAdmin(playerid))
{
SendClientMessage(i,COLOR,text);
}
}
}
return 1;
}
dont work з_з help
Re: help this dont work з_з -
iJumbo - 21.05.2010
any one

? plz
Re: help this dont work з_з -
Razvann - 21.05.2010
pawn Код:
stock SendMessageToRcon(COLOR,text[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
if(IsPlayerAdmin(i))
{
SendClientMessage(i,COLOR,text);
}
}
}
return 1;
}
Re: help this dont work з_з -
iJumbo - 21.05.2010
thx