RaGEZONE sponsored advertisment:
| | The free 3D side scrolling MMORPG. | |
07-01-2008
|
#1 (permalink)
| | RaGEZONER
Rank: Hobbit
Join Date: Jun 2008
Posts: 85
Thanked 6 Times in 1 Post
| [Release] White Scroll Maker NPC (OdinMS)
Hey, I decided to make this for my server and I'll release it to you guys to.
You can Make the Piece of Scroll (4001136) drop from anything you want. Code: // White Scroll Maker By Sawyer of LynnStory
//High Preist John (9201002)
importPackage(net.sf.odinms.client);
var status = 0;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (status >= 2 && mode == 0) {
cm.sendOk("Rawr!?");
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("I am John and if you have all of the materials I will make you a White Jesus Scroll!!! You will need #b5 Pieces of Scroll#k, #bHoly Water#k, and #b10 Mill Mesos#k. ");
}
else if (status == 1) {
if ((cm.haveItem(4001136, 5)) && (cm.haveItem(2050003)) && (cm.getMeso() >= 10000000)) {
cm.sendYesNo("It seems like you have the required materials, do you want me to make a #bWhite Scroll#k for you?");
}
else if (!cm.haveItem(4001136, 5)) {
cm.sendOk("You dont have the required items.");
cm.dispose();
}
else if (!cm.haveItem(2050003)) {
cm.sendOk("You dont have the required items.");
cm.dispose();
}
else if (!cm.getMeso() <= 10000000) {
cm.sendOk("You dont have the required items.");
cm.dispose();
}
}
else if (status == 2) {
cm.gainMeso(-10000000);
cm.gainItem(4001136, -5);
cm.gainItem(2050003, -1);
cm.gainItem(2340000, 1);
cm.dispose();
}
}
}
Last edited by kirbyhood; 07-21-2008 at 10:08 PM.
|
| |
RaGEZONE sponsored advertisment:
07-01-2008
|
#2 (permalink)
| | Victor
Rank: Member + Join Date: Apr 2008 Location: Planet Earth
Posts: 578
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
nice!!!!!!!!!!
|
| | 
Endorsement
07-01-2008
|
#3 (permalink)
| | Member
Rank: Hobbit
Join Date: Jun 2008
Posts: 39
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
how to but this into my database?
sorry for being so noob
|
| | 
Endorsement
07-01-2008
|
#4 (permalink)
| | Alpha
Rank: Member
Join Date: Jun 2008
Posts: 144
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
You need to get a NPC id, and put that script into a notepad document(also change the "John" to the name of NPC) same it, with the title of the document as the number of the NPC. Now, go to your source folder(for me its on my desktop, seans) then go to scrips, NPC, and put the document there.
|
| |
07-09-2008
|
#5 (permalink)
| | luls i go rawr
Rank: Member + Join Date: May 2008 Location: California
Posts: 904
Thanked 1 Time in 1 Post
| Re: [Release] White Scroll Maker NPC (OdinMS)
Question...how do u put the scrolls or w/e into the monster
|
| |
07-09-2008
|
#6 (permalink)
| | Extreme Member
Rank: Member + Join Date: Apr 2008
Posts: 414
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
npc dont talk o.o
|
| |
07-09-2008
|
#7 (permalink)
| | Alpha
Rank: Member
Join Date: Jun 2006 Location: azza
Posts: 136
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
It doesnt change anything to the shop...
|
| |
07-10-2008
|
#8 (permalink)
| | Creator of BrooklynStory
Rank: Member + Join Date: Jun 2008 Location: Brooklyn, NY
Posts: 426
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Thank You. Added to my server already.
|
| |
07-10-2008
|
#9 (permalink)
| | Account Upgraded | Title Enabled!
Rank: Member + Join Date: Jul 2008 Location: Behind You
Posts: 211
Thanked 4 Times in 3 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Seems nice i'll try it latr
|
| |
07-10-2008
|
#10 (permalink)
| | RaGEZONER
Rank: Hobbit
Join Date: Jun 2008
Posts: 80
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
White Jesus Scroll. xD
Love it. Thanks.
|
| |
07-11-2008
|
#11 (permalink)
| | RaGEZONER
Rank: Hobbit
Join Date: Nov 2007
Posts: 88
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
I have a quick question, Why is it that I have to re-login to speak with him again? If I click on him again, he dosen't say anything just sits there. I re-login, and click, he works perfectly.
This happens to Duey The skill maxer as well.
~Blaze
|
| |
07-11-2008
|
#12 (permalink)
| | Bang...
Rank: Alpha Member Join Date: May 2005 Location: Tokyo
Posts: 1,649
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
|
Originally Posted by Blazer9131 |
I have a quick question, Why is it that I have to re-login to speak with him again? If I click on him again, he dosen't say anything just sits there. I re-login, and click, he works perfectly.
This happens to Duey The skill maxer as well.
~Blaze
| Because it's not dispose properly
just add After PHP Code: else if (status == 2) {
cm.gainMeso(-10000000);
cm.gainItem(4001136, -5);
cm.gainItem(2050003, -1);
cm.gainItem(2340000, 1);
|
| |
07-11-2008
|
#13 (permalink)
| | ♣ Hectic ♣
Rank: Member + Join Date: Apr 2008
Posts: 1,205
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Thanks, you gave me the ID for white scrolls!
|
| |
07-23-2008
|
#14 (permalink)
| | I like P servers
Rank: Member + Join Date: Apr 2008
Posts: 295
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Thank you very useful.
I edited it a bit .
|
| |
07-25-2008
|
#15 (permalink)
| | Member
Rank: Hobbit
Join Date: May 2008
Posts: 39
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
What are the required items?
|
| |
08-15-2008
|
#16 (permalink)
| | Owner Of ThugStory
Rank: Member + Join Date: Aug 2008 Location: USA
Posts: 238
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Hey could u tell me a bit more about changing the white scoller seller NPC
Coz i dont want John to sell i want Wonky the fairy to sell it
Could u help me on this 1 i would rlly appreciate it
|
| |
08-15-2008
|
#17 (permalink)
| | Extreme Member
Rank: Member + Join Date: Aug 2008 Location: In Your Bed
Posts: 232
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
wasnet this like posted so much times already?
|
| |
08-15-2008
|
#18 (permalink)
| | Owner of HitsuMs <3
Rank: Alpha Member Join Date: Dec 2007 Location: Downtown ^.^
Posts: 1,693
Thanked 10 Times in 5 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Thx =P but i just sell the white scrools for 1bil but ill try this out
|
| |
08-15-2008
|
#19 (permalink)
| | The Omega
Rank: Hobbit
Join Date: Aug 2008 Location: Singapore, Aljunied
Posts: 84
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
|
Originally Posted by xElkinx |
Hey could u tell me a bit more about changing the white scoller seller NPC
Coz i dont want John to sell i want Wonky the fairy to sell it
Could u help me on this 1 i would rlly appreciate it
| just change the NPC id that you are using to wonky's which is (2013000.js)
and this is released alot of times, don't go claiming that you did it!
__________________ ~*Loves his Mommy & Daddy!!!*~
~*Misery acquaints a man with strange bedfellows*~
~*OdinMs FTW!!!*~ |
| |
09-01-2008
|
#20 (permalink)
| | Newbie
Rank: Hobbit
Join Date: May 2008
Posts: 8
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
This is an awfully great idea in my opinion, great job! I'd like to ask though, isn't this bit of code rather inefficient? Code: else if (!cm.haveItem(4001136, 5)) {
cm.sendOk("You dont have the required items.");
cm.dispose();
}
else if (!cm.haveItem(2050003)) {
cm.sendOk("You dont have the required items.");
cm.dispose();
}
else if (!cm.getMeso() <= 10000000) {
cm.sendOk("You dont have the required items.");
cm.dispose();
}
I've had some experience with VB.NET and Visual C++, and to my understanding, there's usually an "OR" function separating various conditions in an if else statement. For example in Visual Visual Basic, the coding syntax goes something like Code: elseif cm.haveitem(item1) = false or cm.haveitem(item2) = false or cm.haveitem(item3) = false
outputstring.text = "You dont have the required items."
else
...
Just asking, because I have almost no experience with Javascript ^^
|
| |
09-01-2008
|
#21 (permalink)
| | NormalMS Owner
Rank: Member + Join Date: Jun 2008
Posts: 211
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
i rather hand out scrolls as event prizes.
|
| |
09-01-2008
|
#22 (permalink)
| | Onions
Rank: Member + Join Date: Jul 2008 Location: The Coop.
Posts: 1,173
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Wasn't this released before?
__________________ 
Is this good? |
| |
09-01-2008
|
#23 (permalink)
| | The Master
Rank: Omega Join Date: Apr 2008 Location: Soccer Stadium
Posts: 5,299
Thanked 104 Times in 81 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
well this is an old release
__________________
|
Originally Posted by Akaruz | |
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 |
| |
09-13-2008
|
#24 (permalink)
| | Account Upgraded | Title Enabled!
Rank: Member + Join Date: Aug 2008 Location: In a box
Posts: 845
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
|
Originally Posted by megoesrawr | |
Question...how do u put the scrolls or w/e into the monster
| make a monsterdrop sql Code: insert into `monsterdrops`
there i start for u :play_ball
__________________ Code: Sheen says:
omg msn porn
Sheen says:
making me hawneeey
Sheen says:
everytime i go to ragezone i get a boner
|
| |
09-14-2008
|
#25 (permalink)
| | OniGameZ. MMORPG Develop
Rank: Member + Join Date: Jul 2008 Location: Canada ~eh.
Posts: 510
Thanked 0 Times in 0 Posts
| Re: [Release] White Scroll Maker NPC (OdinMS)
Thankz man for the Release<..
|
| |
LinkBacks (?)
LinkBack to this Thread: http://forum.ragezone.com/f427/release-white-scroll-maker-npc-odinms-423351/ | | Posted By | For | Type | Date | | maplestory libary | This thread | Refback | 07-17-2009 07:49 PM | | MapleStory Development Team: OdinMS Based: NPCs | This thread | Refback | 05-10-2009 03:35 PM | | MapleStory Development Team | This thread | Refback | 04-09-2009 04:46 AM | | [OdinMS]Releases,Guides,Repacks,Revs,orials,HTML-PHP,Tools,Handbook - Maplestory Releases - ServerFiles.org | This thread | Refback | 04-01-2009 06:14 PM | | GamerzPlanet - For All Your Online Gaming Needs!! - View Single Post - [Release] [Library of Useful OdinMS Stuff] [Fixes] [Guides] [Registration Pages] | This thread | Refback | 03-31-2009 12:54 PM | | OdinMS Source Releases,Guides,Repacks,Revs,Tutorials,HTML-PHP,Tools,Handbook - GameCheetah | This thread | Refback | 03-31-2009 04:09 AM | | MapleStory Private Server Libary :Npcs: - GameCheetah | This thread | Refback | 03-26-2009 06:54 PM | | [Release] [Library of Useful OdinMS Stuff] [Fixes] [Guides] [Registration Pages] - GameCheetah | This thread | Refback | 03-25-2009 10:50 PM | |