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!

[Source] [v83] MoopleDEV | Multi Worlds | Rev 120 | Rev121 Snapshot

Status
Not open for further replies.
warp(california, "home");
Joined
Sep 16, 2008
Messages
294
Reaction score
103
Re: MoopleDEV | 0.83 Source | *UPDATED*

You know that there must be checks in it for quests right?

Yeah, but I don't know what the quest name/id is.

As for my script, try removing the
Code:
, "in02"
 
Newbie Spellweaver
Joined
Sep 2, 2008
Messages
46
Reaction score
1
Re: MoopleDEV | 0.83 Source | *UPDATED*

SendPackets - ViciusHammer - NO error 38

VICIOUS_HAMMER(0x13D);
 
Newbie Spellweaver
Joined
May 22, 2010
Messages
63
Reaction score
6
Re: MoopleDEV | 0.83 Source | *UPDATED*

Is there a return true; in it?

it has a return true; inside.

That's because there is something wrong in the script. Post it here and I will fix.

nvm, it fixed now.

Yeah, but I don't know what the quest name/id is.

As for my script, try removing the
Code:
, "in02"

you got it, it works now.thx:thumbup:

---------- Post added at 12:41 PM ---------- Previous post was at 12:28 PM ----------

New problem.

At the "Hill East Of Henesys" map, there is a npc named "Power B. Fore Entrance to Bowman Training Center" . I can't talk with it. Have to enter to that training center to do mission = =

One more, at Lith Harbor, the private cab and regular cab can't use? and there is someone there should be selling ticket but i didn't see it(or it already stepped outside of its store". can't talk with it also.
 
Newbie Spellweaver
Joined
Apr 28, 2010
Messages
41
Reaction score
11
Re: MoopleDEV | 0.83 Source | *UPDATED*

List of bugs that i've found so far.

  1. you can't add an items into trade window.
  2. when you apply skill "Combat Step" [ARAN], it D/Cs other players on map.
  3. hired merchant.
  4. mounts' effect aren't show to other player.
  5. unable to buy an equipments in cashshop.

cheer :thumbup:
 
Newbie Spellweaver
Joined
Sep 2, 2008
Messages
46
Reaction score
1
Re: MoopleDEV | 0.83 Source | *UPDATED*

reactor drops:

Code:
update `reactordrops` set `reactorid`=2001 where `reactorid`=2000;
insert into `reactordrops` values ('122', '1402000', '4032309', '1');
insert into `reactordrops` values ('123', '1402000', '4032310', '1');

the reactor id 2001 is the pio's recycled quest box reactor id.

As for the other two, its for the aran's box quest that gives you the bamboo chair.

Questscripts:

21015.js
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 as
    published by the free software foundation 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/>.
*/
/*	
	author : Fate
*/
var status = -1;

function start(mode, type, selection) {
    status++;
    if (mode != 1) {
        if(type == 1 && mode == 0) {
            qm.sendok("what are you so hesitant about? You're a hero! You gotta strike while the iron is hot! Come on, let's do this!");
            qm.dispose();
            return;
        } else {
            qm.dispose();
            return;
        }
    }
    if (status == 0) {
        qm.sendnext("alright, i've done enough explaining for now. Let's move on to the next stage. What's the next stage, you ask? I just told you. Train as hard as you can until you become strong enough to defeat the black mage with a single blow.");
    } else if (status == 1) {
        qm.sendnext("you may have been a hero in the past, but that was hundreds of years ago. Even if it weren't for the curse of the black mage, all those years you spent frozen in time have stiffened your body. You must loosen up a bit and slowly regain your agility. How do you do that, you ask?");
    } else if (status == 2) {
        qm.sendyesno("don't you know that you must first master the fundamentals? So the wise thing to do is to begin with #bbasic training#k. Oh, of course, i forgot that you lost your memory. Well, that's why i'm here. You'll just have to experience it yourself. Shall we begin?");
    } else if (status == 3) {
        qm.forcestartquest();
        qm.showinfo("effect/onusereff.img/guideeffect/arantutorial/tutorialarrow3");
        qm.dispose();
    }
}

function end(mode, type, selection) {
    status++;
    if (status == 0) {
        if(qm.isquestcompleted(21015)) {
            qm.dropmessage(1,"unknown error");
            qm.dispose();
            return;
        }
        qm.forcecompletequest();
        qm.dispose();
    }
}

21016.js
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 as
    published by the free software foundation 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/>.
*/
/*	
	author : Fate
*/
var status = -1;

function start(mode, type, selection) {
    status++;
    if (mode != 1) {
        if(type == 1 && mode == 0) {
            qm.sendok("are you not ready to hunt the #o0100132#s yet? Always proceed if and only if you are fully ready. There's nothing worse than engaging in battles without sufficient preparation.");
            qm.dispose();
            return;
        } else {
            qm.dispose();
            return;
        }
    }
    if (status == 0) {
        qm.sendnext("shall we continue with your basic training? Before accepting, please make sure you have properly equipped your sword and your skills and potions are readily accessible in hotkeys.");
    } else if (status == 1) {
        qm.sendyesno("alright. This time, let's have you defeat #r#o0100132#s#k, which are slightly more powerful than #o0100131#s. Head over to #b#m140020100##k and defeat #r15#k of them. That should help you build your strength. Alright! Let's do this!");
    } else if (status == 2) {
        qm.forcestartquest();
        qm.showinfo("effect/onusereff.img/guideeffect/arantutorial/tutorialarrow3");
        qm.dispose();
    }
}

function end(mode, type, selection) {
    status++;
    if (status == 0) {
        if(qm.isquestcompleted(21016)) {
            qm.dropmessage(1,"unknown error");
            qm.dispose();
            return;
        }
        qm.forcecompletequest();
        qm.dispose();
    }
}

21017.js - non gms like script
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 as
    published by the free software foundation 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/>.
*/
/*
	author : Fate
*/
var status = -1;

function start(mode, type, selection) {
    status++;
    if (mode != 1) {
        qm.dispose();
        return;
    }
    if (status == 0) {
        qm.sendok("defeat 20 #r#o0100133#s#k.");
    } else if (status == 1) {
        qm.forcestartquest();
        qm.showinfo("effect/onusereff.img/guideeffect/arantutorial/tutorialarrow3");
        qm.dispose();
    }
}

function end(mode, type, selection) {
    status++;
    if (status == 0) {
        if(qm.isquestcompleted(21017)) {
            qm.dropmessage(1,"unknown error");
            qm.dispose();
            return;
        }
        qm.forcecompletequest();
        qm.dispose();
    }
}

21018.js
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 as
    published by the free software foundation 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/>.
*/
/*
	author : Fate
*/
var status = -1;

function start(mode, type, selection) {
    status++;
    if (mode != 1) {
        if(type == 1 && mode == 0) {
            qm.sendok("oh, is 5 not enough? If you feel the need to train further, please feel free to slay more than that. If you slay all of them, i'll just have to look the other way even if it breaks my heart, since they will have been sacrificed for a good cause...");
            qm.dispose();
            return;
        } else {
            qm.dispose();
            return;
        }
    }
    if (status == 0) {
        qm.sendnext("now, you will undergo a test that will determine whether you're fit or not. All you have to do is take on the most powerful monster on this island, #o0100134#s. About #r50#k of them would suffice, but...");
    } else if (status == 1) {
        qm.sendyesno("we can't have you wipe out the entire population of #o0100134#s, since they aren't many of them out there. How about 5 of them? You're here to train, not to destroy the ecosystem.");
    } else if (status == 2) {
        qm.forcestartquest();
        qm.showinfo("effect/onusereff.img/guideeffect/arantutorial/tutorialarrow1");
        qm.dispose();
    }
}

function end(mode, type, selection) {
    status++;
    if (status == 0) {
        if(qm.isquestcompleted(21018)) {
            qm.dropmessage(1,"unknown error");
            qm.dispose();
            return;
        }
        qm.forcecompletequest();
        qm.dispose();
    }
}

the im lazy to check what gms prints out for the job advance quest ><'
oh and also, some of the quest scripts for aran quest needs some proper dispose.
Be sure to check them out!

Portals:

Enterrienfirst.js
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 as
    published by the free software foundation 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/>.
*/
/*	
	author : Fate
*/

function enter(pi) {
    pi.warp(140000000, 0);
    return true;
}

reintutor8.js
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 as
    published by the free software foundation 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/>.
*/
/*	
	author : Fate
*/

function enter(pi) {
    pi.warp(140100000, 0);
    return true;
}

repost - add this ...!
 
Newbie Spellweaver
Joined
Nov 19, 2008
Messages
23
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

New bug... when i try to compile with the exp, meso or drop rate changed at constant i can't compile it.. i have to change it to deffault (20 exp 15 meso...) what is wrong (;?
 
Joined
Nov 27, 2009
Messages
442
Reaction score
230
Re: MoopleDEV | 0.83 Source | *UPDATED*

New bug... when i try to compile with the exp, meso or drop rate changed at constant i can't compile it.. i have to change it to deffault (20 exp 15 meso...) what is wrong (;?

That isn't a bug, you just need to learn how to Clean & Build

There's an expiration date on skills? o_O

Yup, those mount skills that last 1-7 days
 
Last edited:
Newbie Spellweaver
Joined
Nov 24, 2008
Messages
38
Reaction score
3
Re: MoopleDEV | 0.83 Source | *UPDATED*

hmm anyone else have the problem u cant use /item (ID) anymore?
Also if u buy any pet from cs it expired right away O_O xD
 
Junior Spellweaver
Joined
Jun 6, 2010
Messages
106
Reaction score
11
Re: MoopleDEV | 0.83 Source | *UPDATED*

New bug... when i try to compile with the exp, meso or drop rate changed at constant i can't compile it.. i have to change it to default (20 exp 15 mesos...) what is wrong (;?

lol you just need to know whats a byte is and you can fix it. If your exp rate is bigger then 1** then you change the word byte for int and you put the exp number and you can compile. Other wise you'll get error.
 
Junior Spellweaver
Joined
Jun 18, 2010
Messages
129
Reaction score
7
Re: MoopleDEV | 0.83 Source | *UPDATED*

hmm anyone else have the problem u cant use /item (ID) anymore?
Also if u buy any pet from cs it expired right away O_O xD

/item is broken..
You can recode another method instead of addbyid.
I fixed it in another way already.
 
Last edited:
Newbie Spellweaver
Joined
Apr 28, 2010
Messages
41
Reaction score
11
Re: MoopleDEV | 0.83 Source | *UPDATED*

sometimes it cannot save inventory in cash shop :
Code:
com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cann
ot add or update a child row: a foreign key constraint fails (`moopledev`.`inven
toryitems`, CONSTRAINT `FK_inventoryitems_2` FOREIGN KEY (`characterid`) REFEREN
CES `characters` (`id`) ON DELETE CASCADE)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)

        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou
rce)
        at java.lang.reflect.Constructor.newInstance(Unknown Source)
        at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
        at com.mysql.jdbc.Util.getInstance(Util.java:384)
        at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1041)
        at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3566)
        at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3498)
        at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1959)
        at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2113)
        at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2568)
        at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.ja
va:2113)
        at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java
:2409)
        at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java
:2327)
        at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java
:2312)
        at client.ItemFactory.saveItems(ItemFactory.java:149)
        at server.CashShop.save(CashShop.java:335)
        at client.MapleCharacter.saveToDB(MapleCharacter.java:3181)
        at net.channel.handler.ChangeMapHandler.handlePacket(ChangeMapHandler.ja
va:43)
        at net.MapleServerHandler.messageReceived(MapleServerHandler.java:107)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$TailFilter.mess
ageReceived(DefaultIoFilterChain.java:734)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessage
Received(DefaultIoFilterChain.java:429)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(Def
aultIoFilterChain.java:51)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.mes
sageReceived(DefaultIoFilterChain.java:812)
        at org.apache.mina.filter.codec.ProtocolCodecFilter$ProtocolDecoderOutpu
tImpl.flush(ProtocolCodecFilter.java:346)
        at org.apache.mina.filter.codec.ProtocolCodecFilter.messageReceived(Prot
ocolCodecFilter.java:221)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessage
Received(DefaultIoFilterChain.java:429)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(Def
aultIoFilterChain.java:51)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.mes
sageReceived(DefaultIoFilterChain.java:812)
        at org.apache.mina.core.filterchain.IoFilterAdapter.messageReceived(IoFi
lterAdapter.java:119)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessage
Received(DefaultIoFilterChain.java:429)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.fireMessageRece
ived(DefaultIoFilterChain.java:416)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.read(Abstract
PollingIoProcessor.java:638)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(Abstr
actPollingIoProcessor.java:598)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(Abstr
actPollingIoProcessor.java:587)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.access$400(Ab
stractPollingIoProcessor.java:61)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.run
(AbstractPollingIoProcessor.java:969)
        at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnabl
e.java:64)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source
)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
 
Custom Title Activated
Loyal Member
Joined
Jun 30, 2008
Messages
3,451
Reaction score
1,616
Re: MoopleDEV | 0.83 Source | *UPDATED*

sometimes it cannot save inventory in cash shop :
Code:
com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cann
ot add or update a child row: a foreign key constraint fails (`moopledev`.`inven
toryitems`, CONSTRAINT `FK_inventoryitems_2` FOREIGN KEY (`characterid`) REFEREN
CES `characters` (`id`) ON DELETE CASCADE)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)

        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou
rce)
        at java.lang.reflect.Constructor.newInstance(Unknown Source)
        at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
        at com.mysql.jdbc.Util.getInstance(Util.java:384)
        at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1041)
        at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3566)
        at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3498)
        at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1959)
        at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2113)
        at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2568)
        at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.ja
va:2113)
        at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java
:2409)
        at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java
:2327)
        at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java
:2312)
        at client.ItemFactory.saveItems(ItemFactory.java:149)
        at server.CashShop.save(CashShop.java:335)
        at client.MapleCharacter.saveToDB(MapleCharacter.java:3181)
        at net.channel.handler.ChangeMapHandler.handlePacket(ChangeMapHandler.ja
va:43)
        at net.MapleServerHandler.messageReceived(MapleServerHandler.java:107)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$TailFilter.mess
ageReceived(DefaultIoFilterChain.java:734)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessage
Received(DefaultIoFilterChain.java:429)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(Def
aultIoFilterChain.java:51)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.mes
sageReceived(DefaultIoFilterChain.java:812)
        at org.apache.mina.filter.codec.ProtocolCodecFilter$ProtocolDecoderOutpu
tImpl.flush(ProtocolCodecFilter.java:346)
        at org.apache.mina.filter.codec.ProtocolCodecFilter.messageReceived(Prot
ocolCodecFilter.java:221)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessage
Received(DefaultIoFilterChain.java:429)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(Def
aultIoFilterChain.java:51)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.mes
sageReceived(DefaultIoFilterChain.java:812)
        at org.apache.mina.core.filterchain.IoFilterAdapter.messageReceived(IoFi
lterAdapter.java:119)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessage
Received(DefaultIoFilterChain.java:429)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.fireMessageRece
ived(DefaultIoFilterChain.java:416)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.read(Abstract
PollingIoProcessor.java:638)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(Abstr
actPollingIoProcessor.java:598)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(Abstr
actPollingIoProcessor.java:587)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.access$400(Ab
stractPollingIoProcessor.java:61)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.run
(AbstractPollingIoProcessor.java:969)
        at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnabl
e.java:64)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source
)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)

Thanks, will do some more tests.
 
Newbie Spellweaver
Joined
Sep 27, 2009
Messages
22
Reaction score
2
Re: MoopleDEV | 0.83 Source | *UPDATED*

Hello kevin, maybe you can help me. Your dev is the best I found from all 8 other devs.
I didn't read all the 40 pages, so if it already answered then just point me there.

The problem is that there are some maps, that the portals are not working there, i don't know if it's your problem, but if we take for example, then these not working:
Kerning City - Subway ticketing booth
Ellinia - Ellinia Station (to orbis)
Ellinia - Sky Ferry <To Erev>
Rien - between Snow Island: Snow-covered field 1-3, i can't get to Dangerous Forest.
Erev - Empress's road - small bridge. (or somewhere in there... still nobeless)

That's what I checked till now... Since this dev is the only working one, then I will continue play here, but if you can, please fix it, if not tell me what to do about it.
Thanks. :)
 
Newbie Spellweaver
Joined
Aug 5, 2010
Messages
31
Reaction score
6
Re: MoopleDEV | 0.83 Source | *UPDATED*

Hello kevin, maybe you can help me. Your dev is the best I found from all 8 other devs.
I didn't read all the 40 pages, so if it already answered then just point me there.

The problem is that there are some maps, that the portals are not working there, i don't know if it's your problem, but if we take for example, then these not working:
Kerning City - Subway ticketing booth
Ellinia - Ellinia Station (to orbis)
Ellinia - Sky Ferry <To Erev>
Rien - between Snow Island: Snow-covered field 1-3, i can't get to Dangerous Forest.
Erev - Empress's road - small bridge. (or somewhere in there... still nobeless)

That's what I checked till now... Since this dev is the only working one, then I will continue play here, but if you can, please fix it, if not tell me what to do about it.
Thanks. :)

They're just not coded portal scripts lol, you can do it yourself by finding the portal name in a specific img file.
 
Newbie Spellweaver
Joined
Nov 24, 2008
Messages
38
Reaction score
3
Re: MoopleDEV | 0.83 Source | *UPDATED*

Nice job on update ! Keep up the good work xD
Edit : hide is still messed up, when log in or change map sometimes u can see the other Player/GM but sometimes not and visa versa .
 
Last edited:
Newbie Spellweaver
Joined
Jul 18, 2008
Messages
30
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

errm.... when i use speed infusion, i got 38 error. Pet doesn't show up in my inventory... may i know what is the problem?
 
Status
Not open for further replies.
Back
Top