02.07.2014, 14:46
How To Make a Script in Which When A Player Type Any Text Then It Appears Like This..
Example:-
[ID:0]TheRaGeLord: How Are You...
Example:-
[ID:0]TheRaGeLord: How Are You...
public OnPlayerText( playerid, text[ ] )
{
new fmat[ 128 ], name[ 24 ];
GetPlayerName( playerid, name, 24 );
format( fmat, sizeof ( fmat ), "{33FF33}[ID: %d] %s: {FFFFFF}%s", playerid, name, text );
SendClientMessageToAll( -1, fmat );
return 0;
}
D:\Game Modez\RG-SATDM\Gamemodes\RGTDM.pwn(2458) : error 035: argument type mismatch (argument 2) D:\Game Modez\RG-SATDM\Gamemodes\RGTDM.pwn(2457 -- 2463) : error 010: invalid function or declaration
|
When I Complied with this code then these errors were coming
Код:
D:\Game Modez\RG-SATDM\Gamemodes\RGTDM.pwn(2458) : error 035: argument type mismatch (argument 2) D:\Game Modez\RG-SATDM\Gamemodes\RGTDM.pwn(2457 -- 2463) : error 010: invalid function or declaration |