• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

animations help

da warmonger

warmonger
Joined
Oct 2, 2008
Messages
35
Reaction score
0
Location
i live in edmonton
not sure i this is right place to post it but i need some help seee i want like fancy animations and shit liek u skill up one skill and instead of a palin white text i want like in red letter CONGRATS you advanced in swording << but in red color how do i make this happen ive seen it before on other ppls servers w8ing for a reply
 
search at Players.cpp for

Code:
sprintf(advMsg, "You advanced in %s%s %u.", getSkillName(skill).c_str(), advMsgLvl, skills[skill][SKILL_LEVEL]);
		sendTextMessage(MSG_EVENT_ADVANCE, advMsg);

and then just change the "MSG_EVENT_ADVANCE" to what you want it.
red would be in your case "MSG_STATUS_CONSOLE_RED"

kind regards, Evil Hero
 
Back
Top