Help me fix /pm bug
#5

Quote:
Originally Posted by ShadowMortar
Посмотреть сообщение
This maybe?
No, because the %s where it needs to be %d will cause the same error.

It's because he's muddled the order of the params at the end of the format function.

Where they have
Код:
format(string, sizeof(string), "(( PM from [%d] %s: %s ))", GetPlayerNameEx(playerid), playerid, reason);
format(string, sizeof(string), "(( PM to [%d] %s: %s ))", GetPlayerNameEx(giveplayerid), giveplayerid, reason);
They should have...

Код:
format(string, sizeof(string), "(( PM from [%d] %s: %s ))", playerid, GetPlayerNameEx(playerid), reason); 
format(string, sizeof(string), "(( PM to [%d] %s: %s ))", giveplayerid, GetPlayerNameEx(giveplayerid), reason);
Reply


Messages In This Thread
Help me fix /pm bug - by Dirda - 04.02.2018, 05:50
Re: Help me fix /pm bug - by Inn0cent - 04.02.2018, 06:25
Re: Help me fix /pm bug - by Sew_Sumi - 04.02.2018, 07:06
Re: Help me fix /pm bug - by ShadowMortar - 04.02.2018, 07:11
Re: Help me fix /pm bug - by Sew_Sumi - 04.02.2018, 07:27
Re: Help me fix /pm bug - by Dirda - 04.02.2018, 08:01
Re: Help me fix /pm bug - by rfr - 04.02.2018, 08:13

Forum Jump:


Users browsing this thread: 1 Guest(s)