[AJUDA] Comando Ver dinheiro.
#1

Olб eu estava tentando montar um simples comando de poder ver quanto o player tem de dinheiro em mгos.

Mas '-' sou iniciante em pawn e nгo consegui =/

Peзo ajuda. Por favor, se for para criticar nгo comentar.

Agradeзo desde jб.
Reply
#2

pawn Код:
new String[90];
format(String,70,"Vocк tem %d de Dinheiro!",GetPlayerMoney(playerid));
SendClientMessage(playerid,-1,String);
Reply
#3

n й isso '-'

tou falando os adms ver quando os players tem na mгo '-' exemplo: /juba

Esse player tem %d de dinheiro em mгos tendeu?
Reply
#4

Sгo as mesmas funзхes,muda apenas alguns parametros,para isso vocк tera que usar Strtok ou Sscanf(Aconselho usar Sscanf por ser mais melhor),Tem alguns tutos no Forum ai sobre isto,procure na Aba Lanзamento/Releases que vocк ira achar alguns.
Reply
#5

pawn Код:
if(strcmp(cmd, "/vergrana", true) == 0) {
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, COLOR_GREEN, "/vergrana [id]");
return 1;
}
plid = strval(tmp);
if(IsPlayerConnected(plid)){
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
new string222[256];
format(string222, sizeof(string222), "{0099FF}(~){CCCCFF} Vocк esta vendo a grana de: [%s: [ID: %d]]!", pname,plid);
SendClientMessage(playerid, 0x00FF00AA, string222);
format(string, sizeof(string), "» Saldo de Grana: [%d]", GetPlayerMoney(plid));
SendClientMessage(playerid, 0x00FF00AA, string);
return 1;
}else{
SendClientMessage(playerid, Vermelho, "{0099FF}(~){CCCCFF} ID invбlido");
return 1;
}
}
Reply
#6

desculpe amigo,mas nгo й o saldo. Quero ver dinheiro em mгos.
Reply
#7

pawn Код:
if( !strcmp( cmd, "/vermoney", true ))
    {
        if( !IsPlayerAdmin( playerid ))
            return SendClientMessage( playerid, 0xFF0000AA, "(OPS) Vocк nгo й administrador !" );
        tmp = strtok(cmdtext, idx);
        if( !strlen( tmp ))
            return SendClientMessage( playerid, 0xFF0000AA, "(OPS) Use: /vermoney [ID]" );
        new id = strval( tmp );
        if( !IsPlayerConnected( id ))
            return SendClientMessage( playerid, COLOR_BRANCO, "(OPS) Slot desocupado !" );
        format( string, sizeof( string ), "* O saldo de %s em mгos й: R$ %d", PlayerName( id ), GetPlayerMoney( id ));
        SendClientMessage( playerid, -1, string );
        return 1;
    }
Algo mais?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)