RaGEZONE sponsored advertisment:
| | The free 3D side scrolling MMORPG. | |
07-03-2008
|
#1 (permalink)
| | Member
Rank: Hobbit
Join Date: Jul 2008
Posts: 35
Thanked 0 Times in 0 Posts
| [Release]Spinel teleporter
This Is The Code For Spinel Teleporter. Thank Me If Helped Code: */
var status = 0;
var maps = Array(680000000, 230000000, 211000000, 101000000, 100000000, 251000000, 103000000, 222000000, 104000000, 240000000, 240030000, 220000000, 250000000, 800000000, 600000000, 221000, 200000000, 102000000, 801000, 105040300);
var cost = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
var costBeginner = Array(**** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** 100);
var selectedMap = -1;
var job;
importPackage(net.sf.odinms.client);
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("Alright, see you next time.");
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("Hi, I am Super Taxi ");
} else if (status == 1) {
cm.sendNextPrev("I can take you to many locations for just a small fee. Beginners will get a 90% discount on normal prices.")
} else if (status == 2) {
var selStr = "Select your destination.#b";
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + costBeginner[i] + " meso)#l";
}
} else {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + cost[i] + " meso)#l";
}
}
cm.sendSimple(selStr);
} else if (status == 3) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
if (cm.getMeso() < costBeginner[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
else {
if (cm.getMeso() < cost[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
} else if (status == 4) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
cm.gainMeso(-costBeginner[selectedMap]);
}
else {
cm.gainMeso(-cost[selectedMap]);
}
cm.warp(maps[selectedMap], 0);
cm.dispose();
}
}
}
|
| |
RaGEZONE sponsored advertisment:
07-04-2008
|
#2 (permalink)
| | Member
Rank: Hobbit
Join Date: Jul 2008
Posts: 35
Thanked 0 Times in 0 Posts
| Re: [Realease]Spinel teleporter [OdinMs]
Any bugs For This? Comment Pls *
|
| | 
Endorsement
07-08-2008
|
#3 (permalink)
| | 我的名字是楊飛宏
Rank: Member + Join Date: Jun 2008 Location: Taiwan
Posts: 340
Thanked 0 Times in 0 Posts
| Re: [Realease]Spinel teleporter [OdinMs]
Where would we put this?
What is the NPC ID?
|
| | 
Endorsement
07-08-2008
|
#4 (permalink)
| | 我的名字是楊飛宏
Rank: Member + Join Date: Jun 2008 Location: Taiwan
Posts: 340
Thanked 0 Times in 0 Posts
| Re: [Realease]Spinel teleporter [OdinMs]
Original Spinel (If any errors): Code: var status = 0;
var maps = Array(680000000, 230000000, 211000000, 101000000, 100000000, 251000000, 103000000, 222000000, 104000000, 240000000, 240030000, 220000000, 250000000, 800000000, 600000000, 221000000, 200000000, 102000000, 801000000, 105040300);
var cost = Array(1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000);
var costBeginner = Array(**** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** 100);
var selectedMap = -1;
var job;
importPackage(net.sf.odinms.client);
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("Alright, see you next time.");
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("Hi, I drive a World Tour Mobile.");
} else if (status == 1) {
cm.sendNextPrev("I can take you to many locations for just a small fee. Beginners will get a 90% discount on normal prices.")
} else if (status == 2) {
var selStr = "Select your destination.#b";
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + costBeginner[i] + " meso)#l";
}
} else {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + cost[i] + " meso)#l";
}
}
cm.sendSimple(selStr);
} else if (status == 3) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
if (cm.getMeso() < costBeginner[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
else {
if (cm.getMeso() < cost[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
} else if (status == 4) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
cm.gainMeso(-costBeginner[selectedMap]);
}
else {
cm.gainMeso(-cost[selectedMap]);
}
cm.warp(maps[selectedMap], 0);
cm.dispose();
}
}
}
|
| |
07-08-2008
|
#5 (permalink)
| | AsiaStory Development
Rank: Member + Join Date: Jul 2008
Posts: 424
Thanked 0 Times in 0 Posts
| Re: [Realease]Spinel teleporter [OdinMs]
|
Originally Posted by xXPhillipXx |
Original Spinel (If any errors): Code: var status = 0;
var maps = Array(680000000, 230000000, 211000000, 101000000, 100000000, 251000000, 103000000, 222000000, 104000000, 240000000, 240030000, 220000000, 250000000, 800000000, 600000000, 221000000, 200000000, 102000000, 801000000, 105040300);
var cost = Array(1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000);
var costBeginner = Array(**** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** 100);
var selectedMap = -1;
var job;
importPackage(net.sf.odinms.client);
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("Alright, see you next time.");
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("Hi, I drive a World Tour Mobile.");
} else if (status == 1) {
cm.sendNextPrev("I can take you to many locations for just a small fee. Beginners will get a 90% discount on normal prices.")
} else if (status == 2) {
var selStr = "Select your destination.#b";
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + costBeginner[i] + " meso)#l";
}
} else {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + cost[i] + " meso)#l";
}
}
cm.sendSimple(selStr);
} else if (status == 3) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
if (cm.getMeso() < costBeginner[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
else {
if (cm.getMeso() < cost[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
} else if (status == 4) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
cm.gainMeso(-costBeginner[selectedMap]);
}
else {
cm.gainMeso(-cost[selectedMap]);
}
cm.warp(maps[selectedMap], 0);
cm.dispose();
}
}
}
| nice code for spinel teleporter ^^
__________________ [COLOR="Red"] |
| |
07-25-2008
|
#6 (permalink)
| | Newbie
Rank: Hobbit
Join Date: Jul 2008
Posts: 6
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
can someone pls tell me whats a code?
nub here.
|
| |
08-01-2008
|
#7 (permalink)
| | Member
Rank: Hobbit
Join Date: Jul 2008
Posts: 12
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
|
Originally Posted by dark_reaper1 |
can someone pls tell me whats a code?
nub here.
| code is 9000020
thanks for the spinel
|
| |
08-01-2008
|
#8 (permalink)
| | iHaveQuitRZ
Rank: Alpha Member Join Date: Apr 2008
Posts: 1,531
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
AHH! HE TOOK OUT THE GNU LISENCE o_0. Lulz. I still see that last end quote there.
Nice release anyways.
|
| |
08-01-2008
|
#9 (permalink)
| | luls i go rawr
Rank: Member + Join Date: May 2008 Location: California
Posts: 904
Thanked 1 Time in 1 Post
| Re: [Release]Spinel teleporter
old =p
__________________ 
Rebuilding SpinMs as of 12/27/08 |
| |
08-03-2008
|
#10 (permalink)
| | Average Member
Rank: Hobbit
Join Date: Jul 2008
Posts: 39
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
|
Originally Posted by megoesrawr | |
old =p
| So what do we do with this code? Someone please tell me
|
| |
08-03-2008
|
#11 (permalink)
| | No soup for you!
Rank: Member
Join Date: Jun 2008 Location: Albany, New York
Posts: 191
Thanked 7 Times in 2 Posts
| Re: [Release]Spinel teleporter
Replace it?...
@Original thread creator, you need some more details. Just plastering it there isn't considered a "release".
|
| |
08-03-2008
|
#12 (permalink)
| | luls i go rawr
Rank: Member + Join Date: May 2008 Location: California
Posts: 904
Thanked 1 Time in 1 Post
| Re: [Release]Spinel teleporter
LOL! I wonder why this forum keeps on bumping old threads..
__________________ 
Rebuilding SpinMs as of 12/27/08 |
| |
08-03-2008
|
#13 (permalink)
| | Extreme Member
Rank: Member + Join Date: Apr 2008
Posts: 363
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
how old is this?
|
| |
08-03-2008
|
#14 (permalink)
| | The Omega
Rank: Member
Join Date: May 2008 Location: New York
Posts: 120
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
Lmao, i dont get it. All you did was take spinels code and paste it on the forum. O.o nothing new here...
I can go get duey's code for skill maxing and paste it here and call it a release if this is what you call a release...
|
| |
08-10-2008
|
#15 (permalink)
| | Newbie
Rank: Hobbit
Join Date: May 2008
Posts: 6
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
|
Originally Posted by aly2cool |
Lmao, i dont get it. All you did was take spinels code and paste it on the forum. O.o nothing new here...
I can go get duey's code for skill maxing and paste it here and call it a release if this is what you call a release...
| I agree...
|
| |
08-22-2008
|
#16 (permalink)
| | Love or Hate?
Rank: Member + Join Date: Aug 2008 Location: ღSღeღaღtღtღlღe
Posts: 483
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
|
Originally Posted by DevelopmentAsia |
This Is The Code For Spinel Teleporter. Thank Me If Helped Code: */
var status = 0;
var maps = Array(680000000, 230000000, 211000000, 101000000, 100000000, 251000000, 103000000, 222000000, 104000000, 240000000, 240030000, 220000000, 250000000, 800000000, 600000000, 221000, 200000000, 102000000, 801000, 105040300);
var cost = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
var costBeginner = Array(**** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** 100);
var selectedMap = -1;
var job;
importPackage(net.sf.odinms.client);
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("Alright, see you next time.");
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("Hi, I am Super Taxi ");
} else if (status == 1) {
cm.sendNextPrev("I can take you to many locations for just a small fee. Beginners will get a 90% discount on normal prices.")
} else if (status == 2) {
var selStr = "Select your destination.#b";
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + costBeginner[i] + " meso)#l";
}
} else {
for (var i = 0; i < maps.length; i++) {
selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + cost[i] + " meso)#l";
}
}
cm.sendSimple(selStr);
} else if (status == 3) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
if (cm.getMeso() < costBeginner[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
else {
if (cm.getMeso() < cost[selection]) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("So you have nothing left to do here? Do you want to go to #m" + maps[selection] + "#?");
selectedMap = selection;
}
}
} else if (status == 4) {
if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
cm.gainMeso(-costBeginner[selectedMap]);
}
else {
cm.gainMeso(-cost[selectedMap]);
}
cm.warp(maps[selectedMap], 0);
cm.dispose();
}
}
}
|
thank i use it for my taxi and it work :D
|
| |
08-22-2008
|
#17 (permalink)
| | Member
Rank: Hobbit
Join Date: Aug 2008
Posts: 29
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
how do i use this ?
|
| |
08-23-2008
|
#18 (permalink)
| | Alpha
Rank: Member
Join Date: Jul 2008 Location: Toronto, Canada
Posts: 139
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
Most repacks already include this.
|
| |
08-23-2008
|
#19 (permalink)
| | Alpha Member
Rank: Alpha Member Join Date: Jul 2008 Location: Palo Alto, CA
Posts: 2,606
Thanked 628 Times in 223 Posts
| Re: [Release]Spinel teleporter
Good job bringing back an old topic bittersweet. This is so commonly used now, no need to post again that it works. Many servers even have this in the FM
|
| |
08-23-2008
|
#20 (permalink)
| | Monster Member
Rank: Member
Join Date: Jul 2008 Location: Maplestory
Posts: 181
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
nice?
|
| |
08-23-2008
|
#21 (permalink)
| | i R lucky!?
Rank: Alpha Member Join Date: Jun 2008 Location: localhost
Posts: 1,945
Thanked 40 Times in 14 Posts
| Re: [Release]Spinel teleporter
Eh. Why do we need another teleporter? This release section is going to shit.
|
| |
09-27-2008
|
#22 (permalink)
| | Member
Rank: Hobbit
Join Date: Sep 2008
Posts: 29
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
how do i use it?
|
| |
09-27-2008
|
#23 (permalink)
| | Average Member
Rank: Hobbit
Join Date: Jul 2008 Location: Not near you!
Posts: 72
Thanked 1 Time in 1 Post
| Re: [Release]Spinel teleporter
|
Originally Posted by benten23 | |
how do i use it?
|
ZOMG, a 1 moth thread bump. Ahhhh that is evil!
but you save the file as (spinel'sid).js
|
| |
09-28-2008
|
#24 (permalink)
| | LaTale Section | Awesomer
Rank: Member + Join Date: May 2008 Location: Maplestory World
Posts: 1,101
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
It ddint was Spinel a normal Teleporter in all repacks?
|
| |
09-28-2008
|
#25 (permalink)
| | Infraction Banned
Rank: Alpha Member Join Date: Jul 2008
Posts: 2,677
Thanked 0 Times in 0 Posts
| Re: [Release]Spinel teleporter
2 months ago.
Also it haev misses ";"
|
| |
LinkBacks (?)
LinkBack to this Thread: http://forum.ragezone.com/f427/release-spinel-teleporter-424875/ | | Posted By | For | Type | Date | | OdinMS Source Releases,Guides,Repacks,Revs,Tutorials,HTML-PHP,Tools,Handbook - GameCheetah | This thread | Refback | 04-05-2009 04:56 AM | | [OdinMS]Releases,Guides,Repacks,Revs,orials,HTML-PHP,Tools,Handbook - Maplestory Releases - ServerFiles.org | This thread | Refback | 03-30-2009 07:44 AM | |