- Joined
- Jun 23, 2008
- Messages
- 9
- Reaction score
- 0
Hi, i made myself some Sex Changer Npcs... Yeah they work in game =)...
am currently working on they even tho that they work, i still have an NPC for making you a male, and one for making you a female... I want to make one NPC cuz 2 is just annoying. THEY work 100%...
HERE is the code for the Female To MALE NPC
Here is The Code for the Male To Female
Feel Free to comment LOL
i know its kinda gay, but ppl in my server requested it xD
Enjoy Your Sex Transfer
---EDIT---
Here are they links in you just wanna copy and paste file into the npc script folder...
Male to Female (The Document Scroll)
Female to Male (the amorian Ambassador At Henesys)
am currently working on they even tho that they work, i still have an NPC for making you a male, and one for making you a female... I want to make one NPC cuz 2 is just annoying. THEY work 100%...
HERE is the code for the Female To MALE NPC
/*
This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <[email protected]>
Matthias Butz <[email protected]>
Jan Christian Meyer <[email protected]>
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/>.
*/
/* Sex Changer o.o
*/
var status = 0;
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) {
cm.sendYesNo("I can make you a Male... LOL. Are you ready?(Remember THAT you need to Change Channel, That Way the Sex Transfer Will Be Succesfull)");
} else if (status == 1) {
cm.getChar().setGender(0);
cm.sendOk("Alright, we're done.");
cm.dispose();
}
}
}
Here is The Code for the Male To Female
/*
This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <[email protected]>
Matthias Butz <[email protected]>
Jan Christian Meyer <[email protected]>
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/>.
*/
/* Sex Change Npc To Female
*/
var status = 0;
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) {
cm.sendYesNo("I can make you a Female... LOL. Are you ready? (Remember THAT you need to Change Channel, That Way the Sex Transfer Will Be Succesfull)");
} else if (status == 1) {
cm.getChar().setGender(1);
cm.sendOk("Alright, we're done.");
cm.dispose();
}
}
}
Feel Free to comment LOL
i know its kinda gay, but ppl in my server requested it xD
Enjoy Your Sex Transfer
---EDIT---
Here are they links in you just wanna copy and paste file into the npc script folder...
Male to Female (The Document Scroll)
To view the content, you need to sign in or register
Female to Male (the amorian Ambassador At Henesys)
To view the content, you need to sign in or register