[HELP]TextDraw
#1

y have a textdraw for and now when the player gets 1+ exp the textdraw isn't updating, how to set update when the player gets +1 exp ?
Reply
#2

TextDrawSetString
Reply
#3

Hooow ? where to put ?
Reply
#4

Where do you call it?
Give me codes to that 1+ exp and i will show you how to do it
Reply
#5

y have a timer
pawn Код:
public OneMinute()
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
            PlayerInfo[i][pExp]++;
    }
    return 1;
}
Reply
#6

Should work
Код:
public OneMinute()
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
            PlayerInfo[i][pExp]++;
            new str[16];
            format(str,sizeof(str),"Points %d",PlayerInfo[i][pExp]);
            TextDrawSetString(TextDrawName,str);
    }
    return 1;
}
Reply
#7

.......
Reply
#8

Thats not from this..maybe you created wrong the textdraw or you have another one.
Reply
#9

.......
Reply
#10

helpp someone
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)