24.08.2010, 03:35
Quote:
I edit the Servercfg and added the filterscript then after it loaded the textdraw it just closed in a second.
|
reference:
pawn Code:
public Credit(playerid,const string[])
pawn Code:
CallRemoteFunction("Credit", "iisi", playerid, -1, "Credits Go To XXX", 4000);
pawn Code:
Credit( playerid, -1, "Credits Go To XXX", 4000 );
so here is my suggestion:
pawn Code:
new str[32];
format( str, sizeof(str), "Credits Go To %d", 4000 ); //4000 or anything you want to be separated by if ()
CallRemoteFunction( "Credit", "is", playerid, str ); //passes an integer, and then a string. it matches your definition.