11.10.2011, 19:56
Search й luxo!
Private message: http://forum.sa-mp.com/showthread.ph...rivate+Message
http://forum.sa-mp.com/showthread.ph...rivate+Message
Tenta pegar de base jб que quer aprender, daн estuda as funзхes.
Um sistema de /contar que tenho aqui:
Estude o cуdigo acima e poderб aprender '-'
Private message: http://forum.sa-mp.com/showthread.ph...rivate+Message
http://forum.sa-mp.com/showthread.ph...rivate+Message
Tenta pegar de base jб que quer aprender, daн estuda as funзхes.
Um sistema de /contar que tenho aqui:
pawn Код:
if(strcmp(cmdtext,"/contar",true) == 0)
{
if (PlayerInfo[playerid][pAdmin] >= 2)
{
new Float:X, Float:Y, Float:Z;
new pName[30];
if (auts == false)
{
auts = true;
GetPlayerName(playerid, pName, 30);
format(string, 280, "*** %s comeзou a contagem.", pName);
SendClientMessageToAll(COLOR_LIGHTBLUE, string);
for(new i; i < MAX_PLAYERS; i++)
{
GameTextForPlayer(i, "~g~-~y~ 3 ~g~-",1000,3);
GetPlayerPos(i, X,Y,Z);
}
SetTimer("count2",1000,0);
SetTimer("count1",2000,0);
SetTimer("countgo",3000,0);
SetTimer("stop",6000,0);
}
else
{
SendClientMessage(playerid, 0xFF9900AA, "A Contagem jб comeзou!");
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_GREY,"Vocк nгo estб autorizado a usar essa comando!");
}
}