funny npc killing (titan source)

Joined
Jul 25, 2008
Messages
1
Reaction score
0
This is my first release so dont blame me and say stuff like "its pointless" or "Nobody uses Titan nemore" or "it killed my first born child" cuz i really just wanna give fun stuff to peoples servers
ok first go to maps folder in your maplestory server folder and look for 100000000 right click and open with notepad and then look for
Code:
1012109
and replace it with
Code:
1061010
file>save>exit
now go to NPCsScripts.h (dont forget its npcSscripts not npcscripts)
and find
Code:
case 9120015: npc_9120015(npc); break;
press enter at the end of that line and put in
Code:
case 1061010: npc_1061010(npc); break;
then go lower in the npcsscripts.h and search
Code:
static void npc_2081400(NPC* npc);
and press enter at the end of that line and put in
Code:
static void npc_1061010(NPC* npc);
then go to your teleportnpcs.cpp file or your ectnpc.cpp file (ones from beisman and the other from Joshes...) and add in at the bottom
Code:
//Made By Nonukun
void NPCsScripts::npc_1061010(NPC* npc) {
	Player* player = npc->getPlayer();
	int state = npc->getState();
	if (state == 0) {
	npc->addText("you peer into the crystal and find..... do you want it?");
	npc->sendYesNo();
		} 

	else if (state == 1) {
		if(npc->getSelected() == YES){ 
	npc->giveItem(1022044, 1);
	npc->giveItem(4031157, 1);
	npc->giveItem(4031158, 1);
	npc->giveItem(4031159, 1);
	npc->addText("*you here the faint sound of -heeelp...-");
        npc->sendNext();
        npc->end();
	 }
  else
   {
	   npc->addText("*you here the faint sound of -heeelp...-");
       npc->sendNext();
       npc->end();
       }
	}
}
build>build solution debug>start without debugging
and your done! go in game find jay and now hes trapped inside a crystal almost dying saying help!=D
 
Re: [realease] funny npc killing (titan source)

um.. this is for TitanMS v55 O_O
get on with the times. use v58, much easier to code NPC too.
 
Re: [realease] funny npc killing (titan source)

Uh, what about giving some descriptions/details/screenshots of it..?
 
Re: [realease] funny npc killing (titan source)

Dude you're the first I've seen that can't spell "Release" properly. Congratulations!
 
Re: [realease] funny npc killing (titan source)

I though, really.. Well.. killing the NPC with ur hands..
 
Back