What ?! LoL
Code:
[AMXX] The Admins Email is %i
, cvar email is a string! :S, and should be %s! Shame on you X-Script.
And this
Code:
new email[128];
get_pcvar_string( p_email, email, _charsmax( email ) );
, i don't think is a good thing, maybe you want to do like this: (i don't see any _charsmax func in amxmodx)
Code:
new email[128];
get_pcvar_string( p_email, email, sizeof email - 1);
__________________