30.12.2013, 20:59
Inicio do GM
Funзгo
pawn Код:
new Bloqueada;
pawn Код:
CMD:travarcaixinha(playerid)
{
Bloqueada = 1;
}
pawn Код:
if(PlayerToPoint(5.0,playerid,386.2484,-2028.6250,7.8359))
{
new DinheiroCaixinha = 1000 + random(15000);
new RespeitoCaixinha = random(5);
if(Bloqueada == 1)
{
SendClientMessage(playerid, COLOR_GRAD1, "Caixinha Bloqueada!");
return 1;
}
if(PlayerInfo[playerid][pCaixinha] == char)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк pegou uma Caixinha Hб Pouco Tempo, Volte No Prуximo Payday!");
return 1;
}
else
{
new string[128];
PlayerInfo[playerid][pCaixinha] = char;
format(string, sizeof(string), "Caixinha: (%s) pegou uma Caixinha, (R$%d) de dinheiro e (%d) de respeito!.",PlayerName(playerid),DinheiroCaixinha, RespeitoCaixinha);
SendClientMessageToAll(COR_GRO,string);
GivePlayerMoney(playerid, DinheiroCaixinha);
PlayerInfo[playerid][pExp] += RespeitoCaixinha;
}
}