02.12.2013, 19:06
testa.
pawn Код:
// topo \/
new bool:DannielCooperV[MAX_PLAYERS] = 0;
// ongamemodeinit
SetTimer("DannielCooper", 1000000);
// final do gm
forward DannielCooper()
public DannielCooper()
{
DannielCooperV = 0;
}
// comando:
dcmd_pacoteiniciante(playerid, params[])
{
#pragma unused params
if(Player[playerid][pConnectTime] >= 10)
{
SendClientMessage(playerid, COLOR_RED, "[ERRO] Vocк nгo pode pegar o pacote iniciante. /ajuda ou /senha para mais informaзхes");
return 1;
}
if(DannielCooperV == 1)
{
SendClientMessage(playerid, COLOR_RED, "[ERRO] Vocк ja pegou seu Pacote Iniciante. /ajuda ou /senha para mais informaзхes");
format(thestring, sizeof(thestring), "[Pacote Iniciante] %s pegou seu Pacote Iniciante", Player[playerid][pName]);
return 1;
}
if(DannielCooperV == 0)
{
new year, month,day;
getdate(year, month, day);
new hour,minuite,second;
gettime(hour,minuite,second);
Player[playerid][pLevel] += 2;
Player[playerid][gPupgrade] += 6;
Player[playerid][CashVerde] += 100000;
Player[playerid][pConnectTime] += 48;
GivePlayerGP(playerid, 100000);
SendClientMessage(playerid, COLOR_RED, "[Pacote Iniciante] Vocк pegou seu pacote iniciante. /ajuda ou /senha para mais informaзхes");
format(thestring, sizeof(thestring), "[Pacote Iniciante] %s pegou seu Pacote Iniciante", Player[playerid][pName]);
DannielCooperV = 1;
WriteLog("edicao", thestring);
}
return 1;
}