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!

[Add-On]Learning NPCs, Start to Finish

Status
Not open for further replies.
Banned
Banned
Joined
Feb 9, 2007
Messages
1,313
Reaction score
177
Read it at last :D. First I wasn't able to understand a single word but now I understood almost anything except those arrays. I think I will figure that out on my own. This guide was very useful. I recommend it to all newbie's. It just helped me a lot.
 
Initiate Mage
Joined
Jun 2, 2013
Messages
1
Reaction score
0
' - Shawn Um Question . How do you link up your Notepad ++ to your Maplestory private server that your playing idk how to do that .
 
Newbie Spellweaver
Joined
May 3, 2014
Messages
90
Reaction score
4
' - Shawn Um Question . How do you link up your Notepad ++ to your Maplestory private server that your playing idk how to do that .

I'm SUPER late but if this is a question occurring with other people, you don't have to link it or whatsoever. You simply open up a NPC script in your SRC folder and edit it. And it applies to your server assuming that it works. I honestly don't even know why I'm posting this, I was just reviewing the commands because I forgot most...
 
bleh....
Loyal Member
Joined
Oct 15, 2008
Messages
2,898
Reaction score
1,129
Sorry for late bump but just got a notification of a Like. 114 likes? When did this happen? Unreal... Is this even relevant anymore? I know sources have changed a lot since I made this.
 
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
Sorry for late bump but just got a notification of a Like. 114 likes? When did this happen? Unreal... Is this even relevant anymore? I know sources have changed a lot since I made this.

NPC scripting hasn't ever changed, so everything here can still be used to learn. Great guide by the way, I love how you added all the NPC commands considering I can't remember all of them. Only thing I would point out is that I'd use ternary rather than if-else only because I like shorter NPC's xD

Code:
if (mode == 1) { // the mode is set to 1 because of the function start, as shown above 
        status++; // advances the NPC to the next status, in this case, status 0 
    }else{ // if mode does not equal 1 
        status--; // does not advance the NPC to the next status. 
    }

Code:
(mode == 1 ? status++ : status--);
 
Newbie Spellweaver
Joined
Jan 27, 2015
Messages
5
Reaction score
0
Very late bump... but everytime i open npc.wz in notepad++ i only see jibberish. cant make anything out of it. whats the problem?
 
(O_o(o_O(O_O)o_O)O_o)
Loyal Member
Joined
Apr 9, 2009
Messages
1,088
Reaction score
322
Status
Not open for further replies.
Back
Top