CallRemoteFunction doesnt appear
#1

pawn Код:
new name[MAX_PLAYER_NAME], string[44];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%s has finished 1st.",name);
CallRemoteFunction("ShowInfoBoxPersonal", "isi",playerid,string,0);
I've made this, but if finish 1st, it doesnt appear, the rest does like GivePlayerMoney..
Reply
#2

pawn Код:
forward ShowInfoBoxPersonal(const string[]);
public ShowInfoBoxPersonal(const string[])
{
    printf("ShowInfoBoxPersonal> %s", string);
    return 1;
}
Reply
#3

ShowInfoBoxPersonal contains one argument, while you have called the same function with 3 arguments.
pawn Код:
CallRemoteFunction("ShowInfoBoxPersonal", "s",string);
This should work here, I guess...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)