You are Unregistered, please register to gain Full access.
    


RaGEZONE sponsored advertisment:

Dragonica Image
The free 3D side scrolling MMORPG.

 
 
LinkBack (5) Thread Tools
Old 09-14-2008   5 links from elsewhere to this Post. Click to view. #1 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

[Release] Very funny npc pack

Your Ad Here
well basically replace nima kin/ kins scripts with these, professionals can tell how easily i did this but meh i felt like releasing something, and i dont plan on releasing how to custom quest cause it's way to easy blah blah blah //greed blah etc
anyways enjoy.
(i normally just release things that have next to no value to me or i barely worked on it, things that do on the other hand i don't release cause i like to hear noob server owners beg, Lol. i still got that dagonms guy in my hamachi its kinda fun to hear him beg for releases)
Code:
/*
 This file is part of the OdinMS Maple Story Server
    Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
                       Matthias Butz <matze@odinms.de>
                       Jan Christian Meyer <vimes@odinms.de>
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation. You may not use, modify
    or distribute this program under any other version of the
    GNU Affero General Public License.
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
/* NimaKIN
 Female Hair for GM.
*/
var status = 0;
var beauty = 0;
var haircolor = Array();
var skin = Array(0, 1, 2, 3, 4);
var hair = Array(31000, 31010, 31020, 31030, 31040, 31050, 31060, 31070, 31080, 31090, 31**** 31**** 31120, 31130, 31140, 31150, 31160, 31170, 31180, 31190, 31200, 31210, 31220, 31230, 31240, 31250, 31260, 31270, 31280, 31290, 31300, 31310, 31320, 31330, 31340, 31350, 31410, 31420, 31430, 31440, 31450, 31460, 31470, 31480, 31490, 31510, 31520, 31530, 31540, 31550, 31560, 31570, 31580, 31590, 31600, 31610, 31620, 31630, 31640, 31650, 31670, 31680, 31690, 31700, 31710, 31720, 31730, 31740);
var hairnew = Array();
var face = Array(21000, 21001, 21002, 21003, 21004, 21005, 21006, 21007, 21008, 21009, 21010, 21011, 21012, 21013, 21014, 21016, 21017, 21018, 21019, 21020, 21022);
var facenew = Array();
var colors = Array();
function start() {
 status = -1;
 action(1, 0, 0);
}
function action(mode, type, selection) {
 if (mode == -1) {
  cm.dispose();
 } else {
  if (mode == 0 && status == 0) {
   cm.dispose();
   return;
  }
  if (mode == 1)
   status++;
  else
   status--;
  if (status == 0) {
   if(cm.getChar().isGM()
 == false) {
    cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
   } else {
    if(cm.getChar().getGender() == 1) {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }else {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }
   }
  } else if (status == 1) {
   if (selection == 0) {
    beauty = 1;
    cm.sendStyle("Pick one?", skin);
   } else if (selection == 1) {
    beauty = 2;
    hairnew = Array();
    for(var i = 0; i < hair.length; i++) {
     hairnew.push(hair[i] + parseInt(cm.getChar().getHair()
 % 10));
    }
    cm.sendStyle("Pick one?", hairnew);
   } else if (selection == 2) {
    beauty = 3;
    haircolor = Array();
    var current = parseInt(cm.getChar().getHair()
/10)*10;
    for(var i = 0; i < 8; i++) {
     haircolor.push(current + i);
    }
    cm.sendStyle("Pick one?", haircolor);
   } else if (selection == 3) {
    beauty = 4;
    facenew = Array();
    for(var i = 0; i < face.length; i++) {
     facenew.push(face[i] + cm.getChar().getFace()
 % 1000 - (cm.getChar().getFace()
 % 100));
    }
    cm.sendStyle("Pick one?", facenew);
   } else if (selection == 4) {
    beauty = 5;
    var current = cm.getChar().getFace()
 % 100 + 21000;
    colors = Array();
    colors = Array(current , current + **** current + 200, current + 300, current +400, current + 500, current + 600, current + 700);
    cm.sendStyle("Pick one?", colors);
   }
  }
  else if (status == 2){
   cm.dispose();
   if (beauty == 1){
    cm.setSkin(skin[selection]);
   }
   if (beauty == 2){
    cm.setHair(hairnew[selection]);
   }
   if (beauty == 3){
    cm.setHair(haircolor[selection]);
   }
   if (beauty == 4){
    cm.setFace(facenew[selection]);
   }
   if (beauty == 5){
    cm.setFace(colors[selection]);
   }
  }
 }
}
Code:
/*
 This file is part of the OdinMS Maple Story Server
    Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
                       Matthias Butz <matze@odinms.de>
                       Jan Christian Meyer <vimes@odinms.de>
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation. You may not use, modify
    or distribute this program under any other version of the
    GNU Affero General Public License.
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
/* KIN
 Male Hair for GM.
*/
var status = 0;
var beauty = 0;
var haircolor = Array();
var skin = Array(0, 1, 2, 3, 4);
var hair = Array(30000, 30020, 30030, 30040, 30050, 30060, 30**** 30120, 30130, 30140, 30150, 30160, 30170, 30180, 30190, 30200, 30210, 30220, 30230, 30240, 30250, 30260, 30270, 30280, 30290, 30300, 30310, 30320, 30330, 30340, 30350, 30360, 30370, 30400, 30410, 30420, 30430, 30440, 30450, 30460, 30470, 30480, 30490, 30510, 30520, 30530, 30540, 30550, 30560, 30570, 30580, 30590, 30600, 30610, 30620, 30630, 30640, 30650, 30660, 30700, 30710, 30720, 30780, 307090, 30800, 30810, 30730, 30760);
var hairnew = Array();
var face = Array(20000, 20001, 20002, 20003, 20004, 20005, 20006, 20007, 20008, 20009, 20010, 20011, 20012, 20013, 20014, 20016, 20017, 20018, 20019, 20020, 20021, 20022, 20023, 20024);
var facenew = Array();
var colors = Array();
function start() {
 status = -1;
 action(1, 0, 0);
}
function action(mode, type, selection) {
 if (mode == -1) {
  cm.dispose();
 } else {
  if (mode == 0 && status == 0) {
   cm.dispose();
   return;
  }
  if (mode == 1)
   status++;
  else
   status--;
  if (status == 0) {
   if(cm.getChar().isGM()
 == false) {
    cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
   } else {
    if(cm.getChar().getGender() == 0) {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }else {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }
   }
  } else if (status == 1) {
   if (selection == 0) {
    beauty = 1;
    cm.sendStyle("Pick one?", skin);
   } else if (selection == 1) {
    beauty = 2;
    hairnew = Array();
    for(var i = 0; i < hair.length; i++) {
     hairnew.push(hair[i] + parseInt(cm.getChar().getHair()
 % 10));
    }
    cm.sendStyle("Pick one?", hairnew);
   } else if (selection == 2) {
    beauty = 3;
    haircolor = Array();
    var current = parseInt(cm.getChar().getHair()
/10)*10;
    for(var i = 0; i < 8; i++) {
     haircolor.push(current + i);
    }
    cm.sendStyle("Pick one?", haircolor);
   } else if (selection == 3) {
    beauty = 4;
    facenew = Array();
    for(var i = 0; i < face.length; i++) {
     facenew.push(face[i] + cm.getChar().getFace()
 % 1000 - (cm.getChar().getFace()
 % 100));
    }
    cm.sendStyle("Pick one?", facenew);
   } else if (selection == 4) {
    beauty = 5;
    var current = cm.getChar().getFace()
 % 100 + 20000;
    colors = Array();
    colors = Array(current , current + **** current + 200, current + 300, current +400, current + 500, current + 600, current + 700);
    cm.sendStyle("Pick one?", colors);
   }
  }
  else if (status == 2){
   cm.dispose();
   if (beauty == 1){
    cm.setSkin(skin[selection]);
   }
   if (beauty == 2){
    cm.setHair(hairnew[selection]);
   }
   if (beauty == 3){
    cm.setHair(haircolor[selection]);
   }
   if (beauty == 4){
    cm.setFace(facenew[selection]);
   }
   if (beauty == 5){
    cm.setFace(colors[selection]);
   }
  }
 }
}
ok so heres what it basically does, every player can use both npcs meaning guy gms can wear girl stuff( talk about the best halloween costume Lol)
If you want to disable it for players just do this
change
if(cm.getChar().isGM()
== false) {
cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
the cm.sendSimple to cm.sendOk and that will auto disable it but show the lists...so if you want you can go ahead and get cocky and put something like
("your not a gm leave me the fuck alone -gets excessively paranoid and summons monsters- ");
and if you ever did do that you can just change the music and make him spawn a monster? :p i dunno i don't plan on making a full out guide on how to do that i just want to get this over with Lol.
EDIT:
kk oh one more thing for even more fun in the database change your gender to 2 so you can equip ALL clothes :D enjoy
why 2? well thats off bounds 0 is male and 1 is female i believe but 2 is alienated meaning it's neither
__________________
I only release things that WORK so don't ask.
monckey100 is offline  

RaGEZONE sponsored advertisment:
Old 09-14-2008   #2 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

And the leeching and trolling should start....right.....about....now.
__________________
I only release things that WORK so don't ask.
monckey100 is offline  

Endorsement
Old 09-14-2008   #3 (permalink)
Λκαяυz føяeνeя
 
Roamer's Avatar
 
Rank: Moderator
Join Date: Jun 2008
Location: Philadelphia, U
Posts: 3,499
Blog Entries: 11
Thanked 81 Times in 13 Posts

Re: [Release] Very funny npc pack

Does this work 100%?
If so ill add to my library.
__________________
SteamID: elitegg_roamer ---- MSN: aista@live.com ---- AIM: hardcoreplox
Roamer is online now  

Endorsement

Old 09-14-2008   #4 (permalink)
Ace
The Master
 
Ace's Avatar
 
Rank: Omega
Join Date: Apr 2008
Location: Soccer Stadium
Posts: 5,256
Blog Entries: 25
Thanked 104 Times in 81 Posts

Re: [Release] Very funny npc pack

ooh.
does this work
__________________

Originally Posted by Akaruz View Post
RZ is a community , it isnt a group of friends who gather around and make chauvinist or sexist remarks toward other members gender or "ways of life"

Learning GFX~ 11/29/08
Ace is offline  
Old 09-14-2008   #5 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

Originally Posted by Roamer View Post
Does this work 100%?
If so ill add to my library.
Originally Posted by ihatehaxor View Post
ooh.
does this work
yeah it does like jeez if i post it in release then ofcourse it works. if i put dev in the title then it semi works :P
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 09-14-2008   #6 (permalink)
Λκαяυz føяeνeя
 
Roamer's Avatar
 
Rank: Moderator
Join Date: Jun 2008
Location: Philadelphia, U
Posts: 3,499
Blog Entries: 11
Thanked 81 Times in 13 Posts

Re: [Release] Very funny npc pack

Originally Posted by monckey100 View Post
yeah it does like jeez if i post it in release then ofcourse it works. if i put dev in the title then it semi works :P
I've seen tons of '[Releases]' That have failed,
-Added to library
__________________
SteamID: elitegg_roamer ---- MSN: aista@live.com ---- AIM: hardcoreplox
Roamer is online now  
Old 09-14-2008   #7 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

kk oh one more thing for even more fun in the database change your gender to 2 so you can equip ALL clothes :D enjoy
Edit: why 2? well thats off bounds 0 is male and 1 is female i believe but 2 is alienated meaning it's neither
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 09-14-2008   #8 (permalink)
~Angel~
 
get31720's Avatar
 
Rank: Member +
Join Date: Jul 2008
Posts: 1,012
Thanked 38 Times in 5 Posts

Re: [Release] Very funny npc pack

Originally Posted by monckey100 View Post
(i normally just release things that have next to no value to me or i barely worked on it, things that do on the other hand i don't release cause i like to hear noob server owners beg, Lol. i still got that dagonms guy in my hamachi its kinda fun to hear him beg for releases)
I feel your pain I know him too. It's because of him I gave up going on hamachi servers a long time ago. The fact that he would beg and ask me to help him with stuff drove me insane
__________________
The perfect guide on learning to code NPCs - [Guide] Learning NPC scripting(beginner's guide)
get31720 is offline  
Old 09-14-2008   #9 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

Originally Posted by get31720 View Post
I feel your pain I know him too. It's because of him I gave up going on hamachi servers a long time ago. The fact that he would beg and ask me to help him with stuff drove me insane
LOL good to know, meh he doesn't bother me if he excessively annoys me i just have my members crash into his server and then steal his members, XD. imo he's the perfect person to leech from Lol.
Btw i probley have the most efficient hamachi server since i only make what i make, i havent use a single repack and i develop my own unique stuff Lol. now what else can i say to get bonus points...
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 09-14-2008   #10 (permalink)
Infraction Banned
 
XxOsirisxX's Avatar
 
Rank: Alpha Member
Join Date: Jul 2008
Posts: 2,677
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

what a waste of lines..

nothing more to says...
XxOsirisxX is offline  
Old 09-14-2008   #11 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

Originally Posted by XxOsirisxX View Post
what a waste of lines..

nothing more to says...
meh, my fingers, my keyboard, we aren't in a scarcity of text.
nothing more to SAY...
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 09-14-2008   #12 (permalink)
Infraction Banned
 
XxOsirisxX's Avatar
 
Rank: Alpha Member
Join Date: Jul 2008
Posts: 2,677
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

Originally Posted by monckey100 View Post
meh, my fingers, my keyboard, we aren't in a scarcity of text.
nothing more to SAY...
still, you seen to have no idea of what you are trying to do.. you don't even realize those are checks, even trough it's "selft-explained"

all this that "you" did..
Code:
if (status == 0) {
   if(cm.getChar().isGM()
 == false) {
    cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
   } else {
    if(cm.getChar().getGender() == 0) {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }else {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }
   }
  } else if (status == 1) {
Simply..
Code:
if (status == 0) {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
  } else if (status == 1) {
That's where you fail so badly. You have no idea of what you just did, you just saw "OMG, if im a normal user, it says another thing, and if im another sex too.. lets me see the script, OMG, it's this what i where saying, let me copy/paste the thing that i wanna see to the others ones where it kicks me".
XxOsirisxX is offline  
Old 09-14-2008   #13 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

Originally Posted by XxOsirisxX View Post
still, you seen to have no idea of what you are trying to do.. you don't even realize those are checks, even trough it's "selft-explained"

all this that "you" did..
Code:
if (status == 0) {
   if(cm.getChar().isGM()
 == false) {
    cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
   } else {
    if(cm.getChar().getGender() == 0) {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }else {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
    }
   }
  } else if (status == 1) {
Simply..
Code:
if (status == 0) {
     cm.sendSimple("Hey there! I could change the way you look! What would you like to change?\r\n#L0#Skin#l\r\n#L1#Hair#l\r\n#L2#Hair Color#l\r\n#L3#Eye#l\r\n#L4#Eye Color#l");
  } else if (status == 1) {
That's where you fail so badly. You have no idea of what you just did, you just saw "OMG, if im a use, it says another thing, and if im another sex too.. lets me see the script, OMG, it's this what i where saying, let me copy/paste the thing that i wanna see to the others ones where it kicks me".
yeah all i did WAS just that, but being as the troll your being, and me not understanding half the things you said due to your grammer...i DID test this and it does work. so stfu please? if it's a release you don't bash like a crazy ass noob on steriods.
edit: oh and one more thing, i kept the gender etc incase you wanted to REVERT back to original scripts you noob.
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 09-14-2008   #14 (permalink)
Infraction Banned
 
XxOsirisxX's Avatar
 
Rank: Alpha Member
Join Date: Jul 2008
Posts: 2,677
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

Originally Posted by monckey100 View Post
yeah all i did WAS just that, but being as the troll your being, and me not understanding half the things you said due to your grammer...i DID test this and it does work. so stfu please? if it's a release you don't bash like a crazy ass noob on steriods.
edit: oh and one more thing, i kept the gender etc incase you wanted to REVERT back to original scripts you noob.
I know.. i said it where a waste of line, i told you why.. and why it seems like you don't understand it, because of the bad use..

My grammar could be bad, but i never said "It's not working" just a waste of lines..
XxOsirisxX is offline  
Old 09-14-2008   #15 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

Originally Posted by XxOsirisxX View Post
I know.. i said it where a waste of line, i told you why.. and why it seems like you don't understand it, because of the bad use..

My grammar could be bad, but i never said "It's not working" just a waste of lines..
true but once again we're not in a scarcity and i kept those lines there so the admin can always change sendsimple back to sendOk rather than just looking at the original codes since they'd be noob.
see where im getting at >_>
i already know how it works first it checks if your GM and if your not sends you a text or else it goes to the next part which checks if your gender is equivalent to 0 and yeah you get the idea.
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 09-14-2008   #16 (permalink)
Infraction Banned
 
XxOsirisxX's Avatar
 
Rank: Alpha Member
Join Date: Jul 2008
Posts: 2,677
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

Hmm kk

Not to be rude.. but, just leave it like this.. i will not argue anymore, it's getting pointless, and i got you "message". It's ok in this way.. i guess..
XxOsirisxX is offline  
Old 09-14-2008   #17 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

Originally Posted by XxOsirisxX View Post
Hmm kk

Not to be rude.. but, just leave it like this.. i will not argue anymore, it's getting pointless, and i got you "message". It's ok in this way.. i guess..
i know right? this arguement was a waste of text, Lol.
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 09-15-2008   #18 (permalink)
Extreme Member
 
Leaf Story's Avatar
 
Rank: Member +
Join Date: Sep 2008
Location: LeafStory
Posts: 495
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

Originally Posted by monckey100 View Post
EDIT:
kk oh one more thing for even more fun in the database change your gender to 2 so you can equip ALL clothes :D enjoy
why 2? well thats off bounds 0 is male and 1 is female i believe but 2 is alienated meaning it's neither
does this work??:scratch:
Leaf Story is offline  
Old 09-15-2008   #19 (permalink)
luls i go rawr
 
Rank: Member +
Join Date: May 2008
Location: California
Posts: 904
Thanked 1 Time in 1 Post

Re: [Release] Very funny npc pack

And how is this funny?
__________________

Rebuilding SpinMs as of 12/27/08
megoesrawr is offline  
Old 09-15-2008   #20 (permalink)
Kuchiki Byakuya
 
chuayaowei's Avatar
 
Rank: Alpha Member
Join Date: Jul 2008
Location: Singapore
Posts: 1,517
Thanked 1 Time in 1 Post

Re: [Release] Very funny npc pack

Added this =)
chuayaowei is offline  
Old 09-15-2008   #21 (permalink)
Ego=Fail.
 
monckey100's Avatar
 
Rank: Member +
Join Date: Jul 2007
Posts: 284
Thanked 8 Times in 2 Posts

Re: [Release] Very funny npc pack

Originally Posted by megoesrawr View Post
And how is this funny?
well its funny if you wear a male hawaiin shirt on a female body >_>
Originally Posted by Leaf Story View Post
does this work??:scratch:
yeah it does, maybe you can just take a look for your self >_> and maybe look at siggys more often i only release things that work.
Originally Posted by chuayaowei View Post
Added this =)
woot :D
__________________
I only release things that WORK so don't ask.
monckey100 is offline  
Old 12-18-2008   #22 (permalink)
Hue
Newbie
 
Hue's Avatar
 
Rank: Hobbit
Join Date: Dec 2008
Posts: 23
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

Thanks Reason : ( Cause my NimaKIN was Disconecting Females when Clicked.)
__________________
-ShinyMS-

Hue is offline  
Old 12-19-2008   #23 (permalink)
[ Sizz'em Out ]
 
xbLazE's Avatar
 
Rank: Member +
Join Date: Jul 2008
Location: Singapore
Posts: 1,278
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

Nice release i guess >.>
__________________
xbLazE is offline  
Old 12-19-2008   #24 (permalink)
Infraction Banned
 
MiniAxel's Avatar
 
Rank: Member +
Join Date: Sep 2006
Posts: 949
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

Great Bumps!
MiniAxel is offline  
Old 12-19-2008   #25 (permalink)
Monster Member
 
Bradness's Avatar
 
Rank: Member
Join Date: Jan 2007
Posts: 177
Thanked 0 Times in 0 Posts

Re: [Release] Very funny npc pack

GG gravedigger.
__________________


Originally Posted by Flowsion
So, want to beat Nexon? Get enough donations to buy your own country.
Bradness is offline  
 

Bookmarks

Tags
kin, nimakin, npcs, release, useless

Thread Tools


LinkBacks (?)
LinkBack to this Thread: http://forum.ragezone.com/f427/release-very-funny-npc-pack-467344/
Posted By For Type Date
MapleStory Development Team: OdinMS Based: NPCs This thread Refback 07-29-2009 12:31 AM
maplestory libary This thread Refback 07-20-2009 05:20 AM
MapleStory Development Team This thread Refback 04-06-2009 10:22 PM
MapleStory Private Server Libary :Npcs: - GameCheetah This thread Refback 03-25-2009 04:31 AM
[Release] [Library of Useful OdinMS Stuff] [Fixes] [Guides] [Registration Pages] - GameCheetah This thread Refback 03-25-2009 01:18 AM



Translated by Google
Albanian Arabic Belarusian Bulgarian Catalan Chinese Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Hungarian Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Maltese Norwegian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swedish Taiwanese Thai Turkish Ukrainian Vietnamese
no new posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274