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!

[Release] Clone system

Status
Not open for further replies.
Initiate Mage
Joined
Apr 24, 2008
Messages
3
Reaction score
0
Nice release !

but...

in MapleCharacter.java
error has been identified.

--------------------------------------------------
public boolean hasFakeChar() {
for (FakeCharacter ch : fakes) {
if(ch != null)
return true;
}
return false;
}
---------------------------------------------------

Other relation methods are not enough...

Thank you for reading!
 
Banned
Banned
Joined
Oct 10, 2008
Messages
111
Reaction score
0
I hate it when it doesnt complie... it will say the same thing as above...
 
Newbie Spellweaver
Joined
Apr 21, 2008
Messages
46
Reaction score
0
if use clone then press !map commands your char will stuck you will saw nothing on map mean npc... you must relog after that
 
You've got my respect!
Joined
Apr 8, 2008
Messages
508
Reaction score
147
that has never happened to me.
try doing this:
in maplecharacter.java
add:
Code:
if(hasFakeChar())
        {
            for (FakeCharacter ch : getFakeChars()) {
                ch.getFakeChar().getMap().removePlayer(ch.getFakeChar());
            }
        }
before
Code:
getClient().getSession().write(warpPacket);
 
Junior Spellweaver
Joined
Oct 15, 2008
Messages
188
Reaction score
0
oh great you just lightened my job since I was about to do this. Guess i'll work on getting to alcove's standards with this. Thanks :)
 
Newbie Spellweaver
Joined
Oct 3, 2008
Messages
77
Reaction score
1
Hmm looks like someone finaly got he base done :p *claps and gives a cookie* i wont use this but ill keep it booked mark until most of the bugs fixed and its stable but very very very good job :D
 
Newbie Spellweaver
Joined
Oct 3, 2008
Messages
77
Reaction score
1
ok i got bored decided to use this LOL but i get this prob


Code:
init:
deps-jar:
Compiling 5 source files to C:\Documents and Settings\Patrick\Desktop\OdinMS\build\classes
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\net\channel\handler\CloseRangeDamageHandler.java:157: cannot find symbol
symbol  : class FakeCharacter
location: class net.sf.odinms.net.channel.handler.CloseRangeDamageHandler
                    for (FakeCharacter ch : c.getPlayer().getFakeChars()) {
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\server\maps\FakeCharacter.java:16: MapleCharacter() has private access in net.sf.odinms.client.MapleCharacter
        MapleCharacter fakechr = new MapleCharacter();
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\server\maps\FakeCharacter.java:21: cannot find symbol
symbol  : method setID(int)
location: class net.sf.odinms.client.MapleCharacter
        fakechr.setID(id + 100000);
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\server\maps\FakeCharacter.java:23: cannot find symbol
symbol  : method setJob(int)
location: class net.sf.odinms.client.MapleCharacter
        fakechr.setJob(player.getJob().getId());
4 errors
BUILD FAILED (total time: 4 seconds)
 
Junior Spellweaver
Joined
Oct 15, 2008
Messages
188
Reaction score
0
ok i got bored decided to use this LOL but i get this prob


Code:
init:
deps-jar:
Compiling 5 source files to C:\Documents and Settings\Patrick\Desktop\OdinMS\build\classes
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\net\channel\handler\CloseRangeDamageHandler.java:157: cannot find symbol
symbol  : class FakeCharacter
location: class net.sf.odinms.net.channel.handler.CloseRangeDamageHandler
                    for (FakeCharacter ch : c.getPlayer().getFakeChars()) {
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\server\maps\FakeCharacter.java:16: MapleCharacter() has private access in net.sf.odinms.client.MapleCharacter
        MapleCharacter fakechr = new MapleCharacter();
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\server\maps\FakeCharacter.java:21: cannot find symbol
symbol  : method setID(int)
location: class net.sf.odinms.client.MapleCharacter
        fakechr.setID(id + 100000);
C:\Documents and Settings\Patrick\Desktop\fmsource\trunk\src\net\sf\odinms\server\maps\FakeCharacter.java:23: cannot find symbol
symbol  : method setJob(int)
location: class net.sf.odinms.client.MapleCharacter
        fakechr.setJob(player.getJob().getId());
4 errors
BUILD FAILED (total time: 4 seconds)
You're missing imports.
 
Master Summoner
Joined
Jul 28, 2008
Messages
503
Reaction score
0
pretty good release buddy!
but looks like people are having errors
 
Newbie Spellweaver
Joined
Oct 3, 2008
Messages
77
Reaction score
1
i think i fixed mine but.. netbeans froze on me 0.o ill edit this if it works or not
 
Junior Spellweaver
Joined
Aug 9, 2008
Messages
111
Reaction score
0
noobs dont know how to recognize errors and fix simple errors.. sigh
 
Banned
Banned
Joined
Oct 10, 2008
Messages
111
Reaction score
0
Theres fakechar in Moogra's i remeber/....
 
Junior Spellweaver
Joined
Aug 9, 2008
Messages
111
Reaction score
0
and how would you fix them, mr. i know everything about java and call everyone a noob

Given that you follow the instructions correctly, no errors should occur.
Furthermore, all problems psoted have been resolved.
 
Mythic Archon
Loyal Member
Joined
May 11, 2008
Messages
722
Reaction score
50
The only errors you should get is if your missing a method which is easy to add ;) like setID :]
 
Status
Not open for further replies.
Back
Top