• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 1, 2008
Messages
37
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

It used to work i don't know maybe few revs ago.
but now its back!!
it says "unable to log on the game server"
 
Custom Title Activated
Loyal Member
Joined
Nov 27, 2009
Messages
1,905
Reaction score
948
Re: MoopleDEV | 0.83 Source | *UPDATED*

It used to work i don't know maybe few revs ago.
but now its back!!
it says "unable to log on the game server"

Haha, looks like your character failed to be put in some null instance of a nonexistent channelserver :p
 
Junior Spellweaver
Joined
Apr 24, 2008
Messages
153
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

Is It Just Me or whenever I try to pick up an item it Says my inventory is full but its not...

Rev:50 By The Way.

Edit: Nvm! :D
 
Last edited:
Newbie Spellweaver
Joined
Sep 2, 2008
Messages
46
Reaction score
1
Re: MoopleDEV | 0.83 Source | *UPDATED*

"unable to log on the game server" please fix
 
warp(california, "home");
Joined
Sep 16, 2008
Messages
294
Reaction score
103
Re: MoopleDEV | 0.83 Source | *UPDATED*

The actual ninja ambush damage formula is this:

STR + LUK * 6 / 5

Code:
(from.getStr() + from.getLuk()) * 6 / 5)
 
Initiate Mage
Joined
Sep 7, 2010
Messages
3
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

Thanks kevintjuh93 for all your hard work on this :D:

I found a small bug in levelUp(), line 2260 should look like this:
if (getLevel() < 11 &! job.isA(MapleJob.MAGICIAN)) {
Since magicians do not need str/dex forcing them to use ap on str/dex is a waste.

Also, for the people who cannot log in, do not use starter.bat. Start them individually (world, login, channel) and give enough time for them to initialize before you start the next one.
 
Custom Title Activated
Loyal Member
Joined
Jun 30, 2008
Messages
3,451
Reaction score
1,616
Re: MoopleDEV | 0.83 Source | *UPDATED*

Thanks kevintjuh93 for all your hard work on this :D:

I found a small bug in levelUp(), line 2260 should look like this:
if (getLevel() < 11 &! job.isA(MapleJob.MAGICIAN)) {
Since magicians do not need str/dex forcing them to use ap on str/dex is a waste.

Also, for the people who cannot log in, do not use starter.bat. Start them individually (world, login, channel) and give enough time for them to initialize before you start the next one.
It's more like this:
Code:
        if (getLevel() < 11 && isBeginner()) {
            remainingAp = 0;
            if (getLevel() < 6) {
                str += 5;
            } else {
                str += 4;
                dex += 1;
            }
        }

Why? Because nexon did this because when you made a magician you would hit '1' on every monster. To prevent this they made your ap go up. And reset your stats at the job advancement.
 
Custom Title Activated
Loyal Member
Joined
Apr 29, 2008
Messages
1,297
Reaction score
509
Re: MoopleDEV | 0.83 Source | *UPDATED*

Oh, you might as well delete ExternalCodeTableGetter.java since the value of your recvops / sendops is already in the file.
 
Joined
Nov 27, 2009
Messages
442
Reaction score
230
Re: MoopleDEV | 0.83 Source | *UPDATED*

It's more like this:
Code:
        if (getLevel() < 11 && isBeginner()) {
            remainingAp = 0;
            if (getLevel() < 6) {
                str += 5;
            } else {
                str += 4;
                dex += 1;
            }
        }

Why? Because nexon did this because when you made a magician you would hit '1' on every monster. To prevent this they made your ap go up. And reset your stats at the job advancement.

PHP:
if (job.getId() / 100 % 10 > 0 || level > 10) {
    remainingAp += 5;
} else {
    this.str += 5;
    this.updateSingleStat(MapleStat.STR, str);
}
 
Custom Title Activated
Loyal Member
Joined
Jun 30, 2008
Messages
3,451
Reaction score
1,616
Re: MoopleDEV | 0.83 Source | *UPDATED*

PHP:
if (job.getId() / 100 % 10 > 0 || level > 10) {
    remainingAp += 5;
} else {
    this.str += 5;
    this.updateSingleStat(MapleStat.STR, str);
}
No, it misses dex.

---------- Post added at 12:54 PM ---------- Previous post was at 12:50 PM ----------

PHP:
        if (getLevel() < 11 && isBeginner()) {
            remainingAp = 0;
            if (getLevel() < 6) {
                str += 5;
            } else {
                str += 4;
                dex += 1;
            }
        } else {
            remainingAp = 5;
            if (isCygnus() && level < 70) {
                remainingAp++;
            }            
        }
 
Junior Spellweaver
Joined
Apr 24, 2008
Messages
153
Reaction score
0
Re: MoopleDEV | 0.83 Source | *UPDATED*

mmmm Pets Still Don't work for me... ?
 
Newbie Spellweaver
Joined
May 8, 2009
Messages
83
Reaction score
4
Re: MoopleDEV | 0.83 Source | *UPDATED*

Same, pets stucked my char. unable to login after buying a pet in cs.
 
Custom Title Activated
Loyal Member
Joined
Apr 29, 2008
Messages
1,297
Reaction score
509
Re: MoopleDEV | 0.83 Source | *UPDATED*

Thanks ;)
Hmm, no motivation to code T_T

Aw, motivation will come along when people thank you :D.

You're awesome :O

Oh, can I haz your MSN please?
 
Status
Not open for further replies.
Back
Top