Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Cola Suprise KurtQuest!

Status
Not open for further replies.
Newbie Spellweaver
Joined
May 16, 2008
Messages
18
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

i got inside sucessfully from teleportNPCs.cpp but theres no npc to talk to inside :p
i guess specific .xml file needed!
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
62
Reaction score
0
IF YOU ARE GETTING THOSE 2 ERRORS, FOLLOW THESE STEPS

1. Go to the folder that has the file named "MapleStoryServer.sln
2. Find the new .cpp(kurtquests.cpp or w/e you named it) and put it in the "MapleStoryServer" Folder.
3. Drag it into the C++ Program below MapleStoryServer.cpp
4. It should be added to the project. Rebuild. Have fun..

---- Alternate Way ----
~~ Do step 2 from above first. ~~
1. Go to your C++ Program ( Visual C++ for me )
2. Go to Project>Add Extisting Item...>Find the CPP file ( If not done yet. Do step 2 from above. )
3. It should be added to the server. Rebuild/Compile (w/e)
4. Play!
 
Newbie Spellweaver
Joined
May 16, 2008
Messages
18
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

still same stupied problem and now i cant even fix!

edit:
fixed! but dont try thing above not working!


i got it working from TeleportNPCs.cpp
but when i get inside no npc to talk to!
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
62
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

still same stupied problem and now i cant even fix!

edit:
fixed! but dont try thing above not working!


i got it working from TeleportNPCs.cpp
but when i get inside no npc to talk to!
you could add the NPC to the map yourself... (Type !gps for the coordinates, go to 910010000.xml and add the npc yourself? or change the map in the script to the right map.. like change 910010000 to kpq or w/e its suppose to be if it aint it.. )


Find
else {
npc->addText("Okay.. you can always come back and help me.);
npc->sendOK();
npc->end();
}
}
else if(type == 2){
npc->teleport(100000200);
npc->end();
}
}
}

and change it to
else {
npc->addText("Okay.. you can always come back and help me.");
npc->sendOK();
npc->end();
}
}
else if(type == 2){
npc->teleport(100000200);
npc->end();
}
}
}
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
62
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

Check my first post for some fixes if you are getting errors that were posted above...
 
Newbie Spellweaver
Joined
May 16, 2008
Messages
18
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

ya i know about that problem i found it when i tried to build but when i get inside the map there no npc inside to talk to!
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
62
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

ya i know about that problem i found it when i tried to build but when i get inside the map there no npc inside to talk to!

lol i read your first post wrong... lol
umm then you would probably have to manually add the NPC to teh map..

1. Go to the map (inside the where the monsters spawn if the npc were there.. )

2. Type !gps (for titan/vana? )
3. find the .xml file for that map
4. get the NPC id from the script..
5. work around in the .xml file until you have added added the NPC..
6. should turn something out like this, but i dont know about the last 3 things... lol sorry
--- EXAMPLE from 10000.xml ---
<NPC>
<id>2000</id>
<x>233</x>
<cy>65</cy>
<fh>7</fh>
<rx0>206</rx0>
<rx1>283</rx1>
</NPC>
 
Newbie Spellweaver
Joined
May 16, 2008
Messages
18
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

ya how am i supose to find this file xml?? i duno number... of xml

no gps command in my server....
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
62
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

ya how am i supose to find this file xml?? i duno number... of xml

no gps command in my server....
My bad.. its !pos


uuh... MapleStoryServer>Maps > Find the 910010000.xml > Mess around until the NPC is in the right place...

Use !pos where you want the NPC to be.

In the XML file, Replace *X* and *Y* with the x and y coordinates. I dont know what the last 3 things are for.. so just mess around until you get it..
<NPC>
<id>1012114</id>
<x>*X*</x>
<cy>*Y*</cy>
<fh>7</fh>
<rx0>206</rx0>
<rx1>283</rx1>
</NPC>
 
Newbie Spellweaver
Joined
May 16, 2008
Messages
18
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

uhhh i give up i cant take it anymore! some1 else do it! (pls)
 
Newbie Spellweaver
Joined
Aug 31, 2007
Messages
22
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

I don't have xml files, but I'll make it from the database.

This should work for your xml, try it.

PHP:
<NPC>
<id>1012114</id>
<x>429</x>
<cy>93</cy>
<fh>1</fh>
<rx0>379</rx0>
<rx1>479</rx1>
</NPC>
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
62
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

I don't have xml files, but I'll make it from the database.

This should work for your xml, try it.

PHP:
<NPC>
<id>1012114</id>
<x>429</x>
<cy>93</cy>
<fh>1</fh>
<rx0>379</rx0>
<rx1>479</rx1>
</NPC>

you should post that at the bottom and type above it... Make this if you have "this .......error"
 
Newbie Spellweaver
Joined
May 16, 2008
Messages
18
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

dont work.... T_T
 
Newbie Spellweaver
Joined
May 16, 2008
Messages
18
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

where u see it in CEF? i cant find it there!
 
Newbie Spellweaver
Joined
Aug 31, 2007
Messages
22
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

Wow King, thanks for the great welcome, I did not leach this from CEF, where the hell did you see this on there? And to fix the error you have to add the cpp into the project by going file>put .cpp in> 1 MapleStoryServer... I wouldn't take this from someone, I'm not like that. There's always people like you on every forum. That's why I never released anything before because alot of people are ungrateful.
 
Newbie Spellweaver
Joined
May 6, 2008
Messages
97
Reaction score
1
Re: [RELEASE] Cola Suprise KurtQuest!

thx i edit n put one on server :)
editing the xml for monsters n making them spawn more when one dies is better :p
 
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
8
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

Dam I did all u said and when I talk to Tory He dosen't respond (nothing happens) what to do?
 
Initiate Mage
Joined
Jun 2, 2008
Messages
1
Reaction score
0
Re: [RELEASE] Cola Suprise KurtQuest!

GOOD

I'm a Korean

I want to party
 
Status
Not open for further replies.
Back
Top