[AJUDA] TextDraw Score !
#1

estou com um problema aqui, estou usando o sistema de salvamento de score do [FeK]DraKiNs.
o sistema й assim:

Em OnPlayerConnect:
pawn Код:
if(dini_Isset("score.ini",PlayerName(playerid))) SetPlayerScore(playerid,dini_Int("score.ini",PlayerName(playerid)));
Em OnPlayerDisconnect:
pawn Код:
dini_IntSet("score.ini",PlayerName(playerid),GetPlayerScore(playerid));
Em OnGameModeInit:
pawn Код:
if(!fexist("score.ini")) dini_Create("score.ini");
aн estou tentando criar um textdraw de score:
ta assim:

pawn Код:
format(string,sizeof(string),"Score: %s",  ? ? ? ?  );
nгo estou sabendo oque por onde estб ? ? ? ? , e se ta certo o %s ....

alguem pode me ajudar ae ?

VLW !!!
Reply
#2

EDIT

Ops, tinha entendido mal, veja como que й

pawn Код:
if(strcmp(cmdtext, "/meuscore", true) == 0)
{
new strmiqueias[64];
new pScore = GetPlayerScore(playerid);
format(strmiqueias, sizeof(strmiqueias), "[INFO] Vocк tem %i de score!", pScore);
ShowPlayerDialog(playerid, 1000, DIALOG_STYLE_MSGBOX, "Seu Score:", strmiqueias, "Fechar", "");
return 1;
}
Vкr se funciona, nгo testei, se num funcionar troca esse
pawn Код:
format(strmiqueias, sizeof(strmiqueias), "[INFO] Vocк tem %i de score!", pScore);
por esse
pawn Код:
format(strmiqueias, sizeof(strmiqueias), "[INFO] Vocк tem %i de score!", pScore(playerid));
Espero ter ajudado.
Reply
#3

Se for nъmero inteiro utilize

%d.

Se for uma palavra utilize

%s.
Reply
#4

pawn Код:
format(string,sizeof(string),"Score: %d",GetPlayerScore(playerid));
Vocк deve criar um textdraw para cada player
Reply
#5

pawn Код:
if(strcmp(cmdtext, "/meuscore", true) == 0)
{
    new
        s[64]
    ;
    format(s, sizeof(s), "Seu Score й:\n%i de score!", GetPlayerScore(playerid));
    ShowPlayerDialog(playerid, 1000, DIALOG_STYLE_MSGBOX, "Informaзхes~", s, "Carol", "e_Gata");
    return 1;
}
Reply
#6

Quote:
Originally Posted by [O.z]Caroline
Посмотреть сообщение
ShowPlayerDialog(playerid, 1000, DIALOG_STYLE_MSGBOX, "Informaзхes~", s, "Carol", "e_Gata");
Uii (6)'
Reply
#7

Miqueias Barros ja mim ajudou...

VLW !!!
Reply
#8

Nгo tem por onde.
Reply
#9

Quote:
Originally Posted by Miqueias Barros
Посмотреть сообщение
Nгo tem por onde.
Copiгo.
Reply
#10

Quote:
Originally Posted by Los
Посмотреть сообщение
Copiгo.
WTF *

Copiгo do Chaves nй, kkkkk
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)