[ajuda] COMANDO DE SETPLAYERHELT
#1

pawn Код:
{
    if(!strcmp("/vida", cmdtext, true))
    {
    if(gTeam[playerid] == ENFERMEIRO)
    {
        SetPlayerHealth(playerid, 100);
        return 1;
    }
 }
Como fasso para isso ficar assim /vida [id] ??
Reply
#2

pawn Код:
if(strcmp(cmd, "/vida", true) == 0)
    {
    if(gTeam[playerid] == ENFERMEIRO)
    {
    new tmp[20], giveplayerid;
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp)) return SendClientMessage(playerid, Branco, "Uso correto: /Vida [id]");
    giveplayerid = strval(tmp);
    if(!IsPlayerConnected(giveplayerid)) return SendClientMessage(playerid, Branco, "Este jogador nгo estб online");
    SetPlayerHealth(giveplayerid, 100);
    }
    else SendClientMessage(playerid, Branco, "Vocк nгo й um enfermeiro");
    return 1;
    }
Vocк tem que comeзar aprender usar strtok JOKERBOY
Reply
#3

C:\Users\GABRIEL\Desktop\samp03csvr_R2-2_win32\gamemodes\JokerBoy.pwn(306) : error 017: undefined symbol "cmd"
C:\Users\GABRIEL\Desktop\samp03csvr_R2-2_win32\gamemodes\JokerBoy.pwn(311) : error 017: undefined symbol "idx"

---
ESTOU APRENDENDO : )
Reply
#4

Olб JOKERBOY.

Acrescente isto no comeзo de seu OnPlayerCommandText:

pawn Код:
new cmd[256];
new idx;
Atenciosamente,
Falcon.
Reply
#5

THX !!
Reply
#6

Nгo estб pegando isso...
Reply
#7

Gabriel eu jб coloquei o necessбrio pra usar strtok no seu GM, vocк tirou?
bom, to no msn me procura lб;
Reply
#8

Tranquilo , eu ja consegui...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)