17.11.2013, 19:35
Entгo Galera, Andei fasendo um Sistema para quando o Player Pular Ele cair no Chгo... Mais queria Colocar apenas se Ele fiser este cmd 5x ele caisse no chгo....
pawn Код:
new pulonome[MAX_PLAYER_NAME+1], stringp[144+MAX_PLAYER_NAME+1];
GetPlayerName(playerid, pulonome, sizeof(pulonome));
if ((newkeys & KEY_SPRINT) && (newkeys & KEY_JUMP))
{
format(stringp, sizeof(stringp), "{8000FF}|'PULOS'| {C0C0C0}(({80FF00} %s {C0C0C0}Acaba de Levar um Tombo. ))", pulonome);
SendClientMessageToAll(playerid, stringp);
SendClientMessage(playerid, -1, "{8000FF}|'DICA'|{FFFFFF} Nгo Pule Ou Continuarб Levando Tombos.");
ApplyAnimation(playerid, "GYMNASIUM", "gym_jog_fallocu",4.1,0,1,1,0,0);
}
return 0;
}