09.06.2013, 15:57
i don't need the full code because the rest isnt concerned here.
have you tried BEFORE and AFTER loggin as rcon ?
by the way just noticed in your format's that you are formating string and integer ( id and playerid )
you put twice %s but integer is %i
change all your format code
from
to
name = string
playerid & id = integer
%s = string
%i = integer
have you tried BEFORE and AFTER loggin as rcon ?
by the way just noticed in your format's that you are formating string and integer ( id and playerid )
you put twice %s but integer is %i
change all your format code
from
Код:
format(str, sizeof(str),"%s(%s) has demoted you to a regular player!",name,playerid);
Код:
format(str, sizeof(str),"%s(%i) has demoted you to a regular player!",name,playerid);
playerid & id = integer
%s = string
%i = integer