#1

How do you give a command / vreaubani to give me 500.000$ ?
Reply
#2

PHP код:
public OnPlayerCommandText(playeridcmdtext[])
{
    if (
strcmp("/vreaubani"cmdtexttrue9) == 0)
    {
        
GivePlayerMoney(playerid,500000);
        return 
1;
    }
    return 
0;

Reply
#3

Код:
public OnPlayerCommandText( playerid, cmdtext[] )
{
    if( !strcmp( cmdtext, "/vreaubani", true ) )     // If player typed /vreaubani
        return GivePlayerMoney( playerid, 500000 );  // Give him $500000
}
P.S. It appears Golf did this first -.- D
Reply
#4

Use
pawn Код:
GivePlayerMoney(playerid, 500000);
In your command to give a player $500 000.

https://sampwiki.blast.hk/wiki/Function:GivePlayerMoney
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)