printf
#4

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
It must be inside the callback.
pawn Код:
public OnPlayerCommandPerformed( playerid, cmdtext[ ], success )
{
    new
        msg_[ 64 ],
        name_[ MAX_PLAYER_NAME ]
    ;
    GetPlayerName( playerid, name_, MAX_PLAYER_NAME );
    format( msg_, sizeof( msg_ ), "(CMD) %s: %s", name_, cmdtext );
    print( msg_ );

    for(new i = 0; i < MAX_PLAYERS; i++ )
    {
        if( !IsPlayerConnected( i ) || !IsPlayerAdmin( i ) ) continue;
       
        SendClientMessage( i, 0x754829AA, msg_ );
    }

    if( !success ) return 0;
    return 1;
}
You've already format it, just print it! No need to use printf.
Thank You Sir +rep
Reply


Messages In This Thread
printf - by Another1 - 15.10.2013, 16:26
Re: printf - by Konstantinos - 15.10.2013, 16:29
AW: printf - by BigETI - 15.10.2013, 16:29
Re: printf - by Another1 - 15.10.2013, 17:30
Re: printf - by Another1 - 15.10.2013, 17:34
Re: printf - by Patrick - 15.10.2013, 17:38
Re: printf - by Konstantinos - 15.10.2013, 17:39
Re: printf - by Djole1337 - 15.10.2013, 17:48
Re: printf - by Konstantinos - 15.10.2013, 17:53
Re: printf - by Another1 - 15.10.2013, 19:17

Forum Jump:


Users browsing this thread: 3 Guest(s)