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.
Junior Spellweaver
Joined
Jul 28, 2009
Messages
119
Reaction score
5
Re: MoopleDEV | 0.83 Source | *UPDATED*

man when i click Login i got d/c,,
how to fix it?
 
Legendary Battlemage
Joined
Aug 1, 2008
Messages
635
Reaction score
4
Re: MoopleDEV | 0.83 Source | *UPDATED*

Why is there no update when he said he will update 4 days ago?
 
Supreme Arcanarch
Loyal Member
Joined
Oct 18, 2009
Messages
914
Reaction score
335
Re: MoopleDEV | 0.83 Source | *UPDATED*

Well just use this and leech from local if you cant get Local to work or can not fix anything.
 
Newbie Spellweaver
Joined
Dec 12, 2008
Messages
7
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

Need 0.83 local.exe
please send
thanks
 
Newbie Spellweaver
Joined
Jan 26, 2009
Messages
14
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

Where is the SQL file ???
 
Newbie Spellweaver
Joined
Dec 12, 2008
Messages
7
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

Client Crash after open aran Skill page.
Client Crash after doing aran Puir weapon quest
 
Last edited:
Initiate Mage
Joined
Feb 19, 2009
Messages
1
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

hello ago know how to download it I know it is for svn but which is not aver that page if I go to download svn to download the sous plzzz tyyyy: Blush :
 
Newbie Spellweaver
Joined
Jul 28, 2009
Messages
89
Reaction score
10
Re: MoopleDEV | 0.83 Source | *UPDATED*

Code:
 private int gainStatByType(MapleCharacter chr, MapleStat type, int gain) {
        int newVal = 0;
        if (type.equals(MapleStat.STR)) {
            newVal = chr.getStr() + gain;
            chr.setStr(newVal);
        } else if (type.equals(MapleStat.INT)) {
            newVal = chr.getInt() + gain;
            chr.setInt(newVal);
        } else if (type.equals(MapleStat.LUK)) {
            newVal = chr.getLuk() + gain;
            chr.setLuk(newVal);
        } else if (type.equals(MapleStat.DEX)) {
            newVal = chr.getDex() + gain;
            chr.setDex(newVal);
        [B]}
        chr.updateSingleStat(type, Math.min(newVal, 999));
        if (newVal > 999) {
            return newVal - 999;
        }
        return 0;[/B]
    }
}

bolded part made me lol
 
Newbie Spellweaver
Joined
Nov 17, 2007
Messages
24
Reaction score
3
Re: MoopleDEV | 0.83 Source | *UPDATED*

Quist Bug

Putzki:
Ahh.. the hero… I’ve always wanted to meet you. (Seems a bit shy) Um… I have this present that I wanted to give you for the longest time, in the event that I actually meet a hero like you. I understand that you’re busy on your way to town, but… would you please accept my present?

(QUEST ACCEPTED) The materials for the present is packed inside a box. I know this is a lot of work, but I want you to break the box and remove the Piece of Bambooo and Wood from it. I’ll take care of the rest.

Summary:
Putzki confessed that he had always wanted to build this present for the hero, and had placed all the necessary items in the box. He then asked me to break the box and bring back the items for him. I ugess my task is to break the box by swinging at it with regular attack, and bring back Piece of Bamboo and Wood in return.

Procedure:
1. Break the Box and pick up Piece of Bamboo and Wood. Noitem box
2. Return to Putzki with the materials.
 
Last edited:
Newbie Spellweaver
Joined
Aug 7, 2008
Messages
28
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

hey can you help me add this command to the moopledev source?

} else if (splitted[0].equals("charinfo")) {
StringBuilder builder = new StringBuilder();
MapleCharacter other = c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);

builder.append(other.getName());
builder.append(" at ");
builder.append(other.getPosition().x);
builder.append("/");
builder.append(other.getPosition().y);
builder.append(" ");
builder.append(other.getHp());
builder.append("/");
builder.append(other.getCurrentMaxHp());
builder.append("hp ");
builder.append(other.getMp());
builder.append("/");
builder.append(other.getCurrentMaxMp());
builder.append("mp ");
builder.append(other.getExp());
builder.append("exp hasParty: ");
builder.append(other.getParty() != null);
builder.append(" hasTrade: ");
builder.append(other.getTrade() != null);
builder.append(" remoteAddress: ");
builder.append(other.getClient().getSession().getRemoteAddress());
c.getPlayer().dropMessage(builder.toString());
 
Newbie Spellweaver
Joined
Jul 1, 2010
Messages
59
Reaction score
5
hey can you help me add this command to the moopledev source?

} else if (splitted[0].equals("charinfo")) {
StringBuilder builder = new StringBuilder();
MapleCharacter other = c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);

builder.append(other.getName());
builder.append(" at ");
builder.append(other.getPosition().x);
builder.append("/");
builder.append(other.getPosition().y);
builder.append(" ");
builder.append(other.getHp());
builder.append("/");
builder.append(other.getCurrentMaxHp());
builder.append("hp ");
builder.append(other.getMp());
builder.append("/");
builder.append(other.getCurrentMaxMp());
builder.append("mp ");
builder.append(other.getExp());
builder.append("exp hasParty: ");
builder.append(other.getParty() != null);
builder.append(" hasTrade: ");
builder.append(other.getTrade() != null);
builder.append(" remoteAddress: ");
builder.append(other.getClient().getSession().getRemoteAddress());
c.getPlayer().dropMessage(builder.toString());

Omg what do i do i dont even know how to copy paste!!!
 
Newbie Spellweaver
Joined
Jul 28, 2009
Messages
89
Reaction score
10
Re: MoopleDEV | 0.83 Source | *UPDATED*

Dont give congrats to someone for releasing a source so full of bugs ( coded in on purpose and not coded in on purpose) you cant tell which ones are done purposfully and which ones occured from the bad organization or just to mess with noobs.

sure it gets ingame, but then you cant drop items from your inventory :D
 
Status
Not open for further replies.
Back
Top