No, I hate Xotic Source! I never touched and never will touch it.
No, I hate Xotic Source! I never touched and never will touch it.
Not everybody is using gay repacks, it is so impossible that other people are making their own source based on latest Valhalla?
I'm saying it's fishy that you somehow have minigames from a xotic only class and xotic is the only source that doesn't have minigames working
If i wanted a more gms like server, then i would go and play gms ^______________________^.
i use xotic, i got this
Code:init: deps-jar: Compiling 379 source files to C:\Users\Danny\Desktop\FamousMS Last\src\build\classes C:\Users\Danny\Desktop\FamousMS Last\src\net\sf\odinms\net\channel\handler\PlayerInteractionHandler.java:103: cannot find symbol symbol : constructor MapleMiniGame(net.sf.odinms.client.MapleCharacter,int,java.lang.String,java.lang.String) location: class net.sf.odinms.server.PlayerInteraction.MapleMiniGame IPlayerInteractionManager game = new MapleMiniGame(c.getPlayer(), type, desc, pass); C:\Users\Danny\Desktop\FamousMS Last\src\net\sf\odinms\net\channel\handler\PlayerInteractionHandler.java:182: cannot find symbol symbol : method getPassword() location: interface net.sf.odinms.server.PlayerInteraction.IPlayerInteractionManager if (pass != null && !pass.equals(ips.getPassword())) { 2 errors BUILD FAILED (total time: 2 seconds)
Don't use xotic since xotic has probs with this unless you know what you're doing
I like some of your releases, and some I don't
this one I like :)
Missing in the one I downloaded.. well, what ever.
MapleMiniGame.java
Change
toCode:public MapleMiniGame(MapleCharacter owner, int type, String desc) { super(owner, type, desc, 1);
MaplePlayerShop.javaCode:public MapleMiniGame(MapleCharacter owner, int type, String desc, String pass) { super(owner, type, desc, pass, 1);
Change
toCode:super(owner, itemId % 10, desc, 3);
PlayerInteractionManager.javaCode:super(owner, itemId % 10, desc, null, 3);
Change
toCode:public PlayerInteractionManager(MapleCharacter owner, int type, String desc, int capacity) { this.setPosition(owner.getPosition()); this.ownerName = owner.getName(); this.ownerId = owner.getId(); this.type = (byte) type; this.capacity = (short) capacity; this.description = desc;
AddCode:public PlayerInteractionManager(MapleCharacter owner, int type, String desc, String pass, int capacity) { this.setPosition(owner.getPosition()); this.ownerName = owner.getName(); this.ownerId = owner.getId(); this.type = (byte) type; this.capacity = (short) capacity; this.description = desc; this.password = pass;
IPlayerInteractionManager.javaCode:@Override public String getPassword() { return password; }
Add
Code:public String getPassword();
Lol new error
Code:init: deps-jar: Compiling 379 source files to C:\Users\Danny\Desktop\FamousMS Last\src\build\classes C:\Users\Danny\Desktop\FamousMS Last\src\net\sf\odinms\server\PlayerInteraction\PlayerInteractionManager.java:36: cannot find symbol symbol : variable password location: class net.sf.odinms.server.PlayerInteraction.PlayerInteractionManager this.password = pass; C:\Users\Danny\Desktop\FamousMS Last\src\net\sf\odinms\server\PlayerInteraction\HiredMerchant.java:22: net.sf.odinms.server.PlayerInteraction.HiredMerchant is not abstract and does not override abstract method getPassword() in net.sf.odinms.server.PlayerInteraction.IPlayerInteractionManager public class HiredMerchant extends PlayerInteractionManager { C:\Users\Danny\Desktop\FamousMS Last\src\net\sf\odinms\server\PlayerInteraction\HiredMerchant.java:31: cannot find symbol symbol : constructor PlayerInteractionManager(net.sf.odinms.client.MapleCharacter,int,java.lang.String,int) location: class net.sf.odinms.server.PlayerInteraction.PlayerInteractionManager super(owner, itemId % 10, desc, 3); C:\Users\Danny\Desktop\FamousMS Last\src\net\sf\odinms\server\PlayerInteraction\MapleMiniGame.java:21: net.sf.odinms.server.PlayerInteraction.MapleMiniGame is not abstract and does not override abstract method getPassword() in net.sf.odinms.server.PlayerInteraction.IPlayerInteractionManager public class MapleMiniGame extends PlayerInteractionManager { C:\Users\Danny\Desktop\FamousMS Last\src\net\sf\odinms\server\PlayerInteraction\MaplePlayerShop.java:17: net.sf.odinms.server.PlayerInteraction.MaplePlayerShop is not abstract and does not override abstract method getPassword() in net.sf.odinms.server.PlayerInteraction.IPlayerInteractionManager public class MaplePlayerShop extends PlayerInteractionManager { 5 errors BUILD FAILED (total time: 1 second)
You have to declare a password String of course. Also you miss the password in this function : super(owner, itemId % 10, desc, 3);