heres Another Release Very Happy
this release modifys the map "urban underground" or nlc so that it spawns
nx slimes and face boxes. so you don't have to host nx events at henesys or some other place.
To get there just talk to chef at lith harbor
Ok First download and extract the 600010000.xml_.zip on the bottom
(refresh if u don't see it) then put the 600010000.xml into your maps in your server files
Then open NPCs.cpp and put this way down at the bottom
Code:
void NPCsScripts::npc_1002006(NPC* npc){
int state = npc->getState();
if(state == 0){
npc->addText("Hey, Do wanna go to The NxGrounds ,its only 5 Million mesos to go?");
npc->sendYesNo();
}
else if(state == 1){
if(npc->getMesos() > 5000000)
if(npc->getSelected() == YES){
npc->end();
npc->giveMesos(-5000000);
npc->teleport(600010000);
}
}
else if(state == 2){
npc->addText("Alright then...");
npc->sendOK();
npc->end();
}
}
Open up NPCsScript.h and put this under codes that look the same as it
Code:
static void npc_1002006(NPC* npc);
and same with this
Code:
case 1002006: npc_1002006(npc); break;
Then do a Debug-release or rebuild/compile
then start up your server and find chef at lith harbor to get in
You Can Change the meso fee by finding
Code:
else if(state == 1){
if(npc->getMesos() > 5000000)
if(npc->getSelected() == YES){
npc->end();
npc->giveMesos(-5000000);
npc->teleport(600010000);
}
Change the red part to the amount of meso fee you want.
So if i wanted it to charge 1m mesos then it would be like this
Code:
else if(state == 1){
if(npc->getMesos() > 1000000)
if(npc->getSelected() == YES){
npc->end();
npc->giveMesos(-1000000);
npc->teleport(600010000);
}
COPIED FROM CEF NO CREDITS TO ME ONLY FOR COPY AND PASTE!
this release modifys the map "urban underground" or nlc so that it spawns
nx slimes and face boxes. so you don't have to host nx events at henesys or some other place.
To get there just talk to chef at lith harbor
Ok First download and extract the 600010000.xml_.zip on the bottom
(refresh if u don't see it) then put the 600010000.xml into your maps in your server files
Then open NPCs.cpp and put this way down at the bottom
Code:
void NPCsScripts::npc_1002006(NPC* npc){
int state = npc->getState();
if(state == 0){
npc->addText("Hey, Do wanna go to The NxGrounds ,its only 5 Million mesos to go?");
npc->sendYesNo();
}
else if(state == 1){
if(npc->getMesos() > 5000000)
if(npc->getSelected() == YES){
npc->end();
npc->giveMesos(-5000000);
npc->teleport(600010000);
}
}
else if(state == 2){
npc->addText("Alright then...");
npc->sendOK();
npc->end();
}
}
Open up NPCsScript.h and put this under codes that look the same as it
Code:
static void npc_1002006(NPC* npc);
and same with this
Code:
case 1002006: npc_1002006(npc); break;
Then do a Debug-release or rebuild/compile
then start up your server and find chef at lith harbor to get in
You Can Change the meso fee by finding
Code:
else if(state == 1){
if(npc->getMesos() > 5000000)
if(npc->getSelected() == YES){
npc->end();
npc->giveMesos(-5000000);
npc->teleport(600010000);
}
Change the red part to the amount of meso fee you want.
So if i wanted it to charge 1m mesos then it would be like this
Code:
else if(state == 1){
if(npc->getMesos() > 1000000)
if(npc->getSelected() == YES){
npc->end();
npc->giveMesos(-1000000);
npc->teleport(600010000);
}
COPIED FROM CEF NO CREDITS TO ME ONLY FOR COPY AND PASTE!