27.10.2018, 10:29
Wait, where in your line, have you used PlayerInfo[playerid]'s value?
This:
Should be
And second, are you sure PlayerInfo[playerid] is the end of the variable?
This:
Код:
format(stri, sizeof(stri), ""COL_YELLOW"**Double Score: "COL_RED"You earned +2 Extra Score.", PlayerInfo[playerid]);
Код:
format(stri, sizeof(stri), "%s"COL_YELLOW"**Double Score: "COL_RED"You earned +2 Extra Score.", PlayerInfo[playerid]); //use %s for string, where ever you want to display the value. Otherwise, using PlayerInfo[playerid] is useless.