[Release] Clone system

Status
Not open for further replies.
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!
 
I hate it when it doesnt complie... it will say the same thing as above...
 
if use clone then press !map commands your char will stuck you will saw nothing on map mean npc... you must relog after that
 
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);
 
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 :)
 
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
 
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)
 
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.
 
pretty good release buddy!
but looks like people are having errors
 
Status
Not open for further replies.
Back