Titles

New Member
✔️ HL Verified
Joined
Feb 12, 2010
Messages
403
Best answers
0
Location
Planet Vegeta
Hi. I want to ask about esf 1.2.3 titles (i mean like "Nick" has killed "Nick" with kamehameha) this kamehameha can be changet to super kamehameha?
 
Freelance Mappzor
✔️ HL Verified
🚂 Steam Linked
💻 Oldtimer
Joined
Nov 21, 2003
Messages
17,065
Best answers
0
Location
Stairing at the Abyss
Check the AMXX site for a tutorial on how to change those. Its the same system used in ESF.
 
NOT IN THE MANGA™
★ Black Lounger ★
✔️ HL Verified
🚂 Steam Linked
💻 Oldtimer
Joined
Jan 5, 2008
Messages
3,276
Best answers
0
Location
Lithuania
Code:
#include <amxmodx>

public plugin_init()
	register_message(get_user_msgid("DeathMsg"), "DeathMsg");

public DeathMsg()
{
	new Weapon[12];
	get_msg_arg_string(3, Weapon, 11);

	if (equal(Weapon, "kamehameha"))
		set_msg_arg_string(3, "Super Kamehameha");
}
 

Users who are viewing this thread

Top Bottom