21.12.2010, 08:34
You cant use the %s, %d, ... format symbols in every command, so you have to create the string you want to have with 'format' first
pawn Код:
new IPP[16], text[24];
GetPlayerIp(playerid, IPP, sizeof(IPP));
format(text, sizeof(text), "banip %s", IPP); //this formats the string you want to have
SendRconCommand(text); //and saves it to text