still got no idea, im confused - totally...
How can i make the "title" go up by 1 when player levels up?:
PHP Code:
if(g_xp[killer] >= LEVELS[g_level[killer]]) {
++g_level[killer];
//title lvl code
client_print(killer, print_chat, "[COD] Congratulations. You have advanced to a new level. Current level: %i, rank: lawl", g_level[killer])
}
I really need your help :/
Edit: Tried this, but didn't work:
PHP Code:
g_title[killer] = TITLES[g_level[killer]];
Knowing that the title will be set to the row number of levels, and since level row number increased it would move the title up by 1 unit.
Still seems not to work