Whats that function called?
#1

That when you go on the TAB stuff and click on player's nickname it would do some actions like showing stats or whatever.
Reply
#2

This one: https://sampwiki.blast.hk/wiki/OnPlayerClickPlayer
Reply
#3

You can create a stock and then use it to display the statistics of the player, example:

PHP код:
stock ShowStats(playerid)
{
    new 
string[3000];
    
format(stringsizeof(string), "User Statistics for: %s"GetPlayerNameEx(playerid));
    
SendClientMessage(playeridCOLOR_WHITEstring);
    
    
//etc
    
return 1;

Then you can use this: https://sampwiki.blast.hk/wiki/OnPlayerClickPlayer
Reply
#4

Thanks both, appreciated.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)