string
#1

how do u get commers to show in client messages .

e.g

Now
$16000

how we want it
$16,000

how do we get the money in the client messages to show up like this.
Reply
#2

https://sampforum.blast.hk/showthread.php?tid=184328
Reply
#3

PHP код:
stock FormatNumber(value//RyDeR`
{
    new
        
string[24]
    ;
    
format(stringsizeof(string), "%d"value);
    
    for(new 
= (strlen(string) - 3); > (value 0) ; -= 3)
    {
        
strins(string[i], ","0);
    }
    return 
string;

Example:

PHP код:
new string[124];
format(stringsizeof(string),"$%s"FormatNumber(16000));
SendClientMessage(playeridCOLOR_GREYstring); 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)