- 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
and replace it with
file>save>exit
now go to NPCsScripts.h (dont forget its npcSscripts not npcscripts)
and find
press enter at the end of that line and put in
then go lower in the npcsscripts.h and search
and press enter at the end of that line and put in
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
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
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
Code:
1061010
now go to NPCsScripts.h (dont forget its npcSscripts not npcscripts)
and find
Code:
case 9120015: npc_9120015(npc); break;
Code:
case 1061010: npc_1061010(npc); break;
Code:
static void npc_2081400(NPC* npc);
Code:
static void npc_1061010(NPC* npc);
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();
}
}
}
and your done! go in game find jay and now hes trapped inside a crystal almost dying saying help!=D