[Tutorial] Создание TextDraw статистики, LvL и Respect
#1

Здравствуйте я вам покажу как зделать вот такой текстдрав

В начало ко всем new
PHP Code:
new Text:lvlexp[MAX_PLAYERS]; 
в OnPlayerConnect
PHP Code:
    lvlexp[playerid] = TextDrawCreate(10.000000,430.000000,"_");
    
TextDrawAlignment(lvlexp[playerid],0);
    
TextDrawBackgroundColor(lvlexp[playerid],0x000000ff);
    
TextDrawFont(lvlexp[playerid],1);
    
TextDrawLetterSize(lvlexp[playerid],0.500000,1.5);
    
TextDrawColor(lvlexp[playerid],0xffffffff);
    
TextDrawSetOutline(lvlexp[playerid],1);
    
TextDrawSetProportional(lvlexp[playerid],1);
    
TextDrawSetShadow(lvlexp[playerid],1);
    
TextDrawShowForPlayer(playeridlvlexp[playerid]); 
в OnPlayerDisconnect
PHP Code:
TextDrawDestroy(lvlexp[playerid]); 
в OtherTimer
PHP Code:
            new exp PlayerInfo[i][pExp];
            new 
nxtlevel PlayerInfo[i][pLevel]+1;
            new 
expamount nxtlevel*levelexp;
            
format(string,sizeof(string),"LvL:~y~%d ~w~Exp:~y~%d~w~/~y~%d",PlayerInfo[i][pLevel],exp,expamount);
            
TextDrawSetString(lvlexp[i], string); 
вот и все
автор я.

Урок По созданию Паблик OtherTimer

ко всем forwards
PHP Code:
forward OtherTimer(); 
ко всем new
PHP Code:
new othtimer
сам паблик
PHP Code:
public OtherTimer()
{
    for(new 
0MAX_PLAYERSi++)
    {
        if(
IsPlayerConnected(i))
        {
            new 
string[256];
            new 
exp PlayerInfo[i][pExp];
            new 
nxtlevel PlayerInfo[i][pLevel]+1;
            new 
expamount nxtlevel*levelexp;
            
format(string,sizeof(string),"LvL:~b~%d ~w~Exp:~b~%d~w~/~b~%d",PlayerInfo[i][pLevel],exp,expamount);
            
TextDrawSetString(lvlexp[i], string);
        }
    }

в public OnGameModeInit()
PHP Code:
othtimer SetTimer("OtherTimer"10001); 
в public GameModeExitFunc()
PHP Code:
KillTimer(othtimer); 
Reply
#2

Никогда не делайте изменение таких текстдро по таймеру.
Их достаточно менять только при изменении выводимых данных.
Reply
#3

Немного про оптимизацию - лучше только при изменение очков обновлять тексдрав, экономия трафика и исчезание ненужных операций каждую секунду.
Reply
#4

ГФ на говнокод как и этот код (с)
Reply
#5

Quote:
Originally Posted by Romanius
View Post
ГФ на говнокод как и этот код (с)
просто один сайт залочен, вот сейчас сюда и попрет подобный контингент посты набивать с говнокодами.
Reply
#6

Спасибо хорошая работа
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)