No, there's no translator in AMXX.
You need to remove the translator stuff from the client_print functions.
For example, I took this line:
Code:
client_print(0,print_chat,_T("%s Is Puking On %s's Dead Body !! HaHaHaHa !!", id), player_name, dead_name)
And removed some stuff and got this:
Code:
client_print(0,print_chat,"%s Is Puking On %s's Dead Body !! HaHaHaHa !!", player_name, dead_name)
__________________