Recon

Members
  • Content Count

    37
  • Joined

  • Last visited

Everything posted by Recon

  1. Disable Tutorial

    haha thought your profile pic looked family too when i saw your reply
  2. Disable Tutorial

    Thanks both @Batta- Yes I found this on a forum actually but couldnt find the command line to use for script runner, any thoughts? @CuddlesI agree its definitely helpful but alot of screens to click though. I've got a custom tutorial with popups upon entering certain areas on my server for new players so ideally I'd like to disable due to duplicating screens. Did you have any luck though before dropping the idea? Thanks both
  3. Disable Tutorial

    Hey All I'd like to disable the tutorial window from appearing for new players on my server. I've given the code a stab using 'script runner' and positively it works but only if the players create their character, log out and log back in (not very helpful). Attached the code below, any thoughts? function onPlayerLogin(player) { player.setTutorialLevel(9999); player.getTutorialLevel(); com.wurmonline.server.tutorial.PlayerTutorial.skipTutorialCommand(player, "empty"); com.wurmonline.server.tutorial.PlayerTutorial.removeTutorial(com.wurmonline.server.WurmId); } Many Thanks, R
  4. Don't believe so - had to manually edit my SQL database to delete the vampire skills to get my server working again
  5. You are a star! Think I've cracked it - vampire mod seems to be incompatible with v1.9 so the skills in table prevent others from loading Thank you
  6. Thanks Ayluin The second error seemed to be caused by the Treasure Mod which when enabled drops out. Still got an issue with skills not pulling through sadly. Is there anyone I can reach out too?
  7. Ah I was using this mod but got all mods disabled currently. Does craft more thing affect character skills not pulling through to the game?
  8. I also had this error. Did you also experience Character skills not pulling through to players? Got the below error and struggling to resolve this one even if mods are disabled. any thoughts?
  9. Same issue here. Drake Mount Mod also broke in the update
  10. You are a star thank you so much. Bet its keeping you mega busy updating your mod suite so no worries at all, totally understand! Thanks for everything
  11. Hey Sindusk, I've installed the new versions including the sindusk librabry which loads with no errors, only issue is the spellcraft mod fails to load. Any thoughts? org.gotti.wurmunlimited.modloader.dependency.DependencyException: Spellcraft requires SinduskLibrary which is unavailable at org.gotti.wurmunlimited.modloader.dependency.DependencyResolver.checkRequires(DependencyResolver.java:98) at org.gotti.wurmunlimited.modloader.dependency.DependencyResolver.order(DependencyResolver.java:36) at org.gotti.wurmunlimited.modloader.ModLoaderShared.loadModsFromModDir(ModLoaderShared.java:138) at org.gotti.wurmunlimited.serverlauncher.DelegatedLauncher.main(DelegatedLauncher.java:20) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at javassist.Loader.run(Loader.java:288) at org.gotti.wurmunlimited.serverlauncher.ServerLauncher.main(ServerLauncher.java:33)
  12. Hey all, is this v1.6 compatible? Had to disable it as it was causing the server to crash but then again it could be a conflict with another mod - any thoughts?
  13. Updated to 1.6 for a limited time, new players will receive level 40 starting skills and level 30 tools
  14. Updated to 1.6 for a limited time, new players will receive level 40 starting skills and level 30 tools
  15. Hey all, I've migrated my server from one provider to another but on migration I had issues loading the SQL Databases. I've fixed most of the issues but the only issue remaining is for existing players whereby their skills do not load. If they login and start building their skills any progression is also lost which is really frustrating for them. The error which appears is: [11:03:39 AM] WARNING com.wurmonline.server.creatures.Creature: Failed to load and create skills for creature with name Dummy:null java.lang.NullPointerException at com.wurmonline.server.skills.SkillSystem.getTypeFor(SkillSystem.java:453) at com.wurmonline.server.skills.Skill.<init>(Skill.java:181) at com.wurmonline.server.skills.DbSkill.<init>(DbSkill.java:66) at com.wurmonline.server.skills.DbSkills.load(DbSkills.java:122) at com.wurmonline.server.creatures.Creature.loadSkills(Creature.java:12289) at com.wurmonline.server.LoginHandler.handleLogin(LoginHandler.java:1690) at com.wurmonline.server.LoginHandler.login(LoginHandler.java:446) at com.wurmonline.server.LoginHandler.reallyHandle(LoginHandler.java:313) at com.wurmonline.communication.SocketConnection.tick(SocketConnection.java:615) at com.wurmonline.communication.SocketServer.tick(SocketServer.java:172) at com.wurmonline.server.Server.run(Server.java:2462) at java.util.TimerThread.mainLoop(Timer.java:555) at java.util.TimerThread.run(Timer.java:505) Any thoughts how to fix this? Many Thanks R
  16. Bump - be great if someone knows how to do this
  17. Hi All, So I've played on a few servers which have a chat channel called "Info" which contains useful information for new players to the server i.e. map url, places of interest, mods installed etc. I'd love to incorporate this into my server, does someone have a mod for this they could kindly share? Would be amazing if the message could be changed in the .properties file as well Many Thanks, Recon
  18. Hi All, Loving the sound of this mod! Sadly I have issues loading this one up. Tried diabling egg layers and the black drake but as these were the first errors I noticed. I've attached the below log, any thoughts? Many Thanks Recon [12:21:09 PM] INFO com.wurmonline.server.creatures.CreatureTemplateCreator: Starting to create Creature Templates [12:21:09 PM] INFO com.wurmonline.server.creatures.CreatureTemplateCreator: Creating Creature Templates took 4 ms [12:21:09 PM] INFO org.gotti.wurmunlimited.modsupport.IdFactory: Using id 2147483623 for creaturetemplate mod.creature.BlueDrake java.lang.NoSuchMethodError: org.gotti.wurmunlimited.modsupport.CreatureTemplateBuilder.headbuttDamString(Ljava/lang/String;)Lorg/gotti/wurmunlimited/modsupport/CreatureTemplateBuilder; org.gotti.wurmunlimited.modloader.classhooks.HookException: java.lang.NoSuchMethodError: org.gotti.wurmunlimited.modsupport.CreatureTemplateBuilder.headbuttDamString(Ljava/lang/String;)Lorg/gotti/wurmunlimited/modsupport/CreatureTemplateBuilder; at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:354) at com.wurmonline.server.creatures.CreatureTemplateCreator.createCreatureTemplates(CreatureTemplateCreator.java) at com.wurmonline.server.Server.startRunning(Server.java:779) at com.wurmonline.server.ServerLauncher.runServer$1(ServerLauncher.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.gotti.wurmunlimited.modloader.server.ProxyServerHook$1$1.invoke(ProxyServerHook.java:56) at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:344) at com.wurmonline.server.ServerLauncher.runServer(ServerLauncher.java) at com.wurmonline.server.gui.WurmServerGuiController.startDB(WurmServerGuiController.java:1319) at com.wurmonline.server.gui.WurmServerGuiMain.main(WurmServerGuiMain.java:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at javassist.Loader.run(Loader.java:288) at org.gotti.wurmunlimited.serverlauncher.DelegatedLauncher.main(DelegatedLauncher.java:30) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at javassist.Loader.run(Loader.java:288) at org.gotti.wurmunlimited.serverlauncher.ServerLauncher.main(ServerLauncher.java:33) Caused by: java.lang.NoSuchMethodError: org.gotti.wurmunlimited.modsupport.CreatureTemplateBuilder.headbuttDamString(Ljava/lang/String;)Lorg/gotti/wurmunlimited/modsupport/CreatureTemplateBuilder; at org.jubaroo.wurmunlimited.mods.dragonmountmod.creatures.BlueDrake.createCreateTemplateBuilder(BlueDrake.java:43) at org.gotti.wurmunlimited.modsupport.creatures.ModCreatures$1$1.invoke(ModCreatures.java:101) at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:344) ... 24 more [12:21:09 PM] INFO com.wurmonline.server.Server: Shutting down the server - reason: Problem running the server - java.lang.NoSuchMethodError: org.gotti.wurmunlimited.modsupport.CreatureTemplateBuilder.headbuttDamString(Ljava/lang/String;)Lorg/gotti/wurmunlimited/modsupport/CreatureTemplateBuilder; [12:21:09 PM] INFO com.wurmonline.server.Server: Shutting down the server - cause: org.gotti.wurmunlimited.modloader.classhooks.HookException: java.lang.NoSuchMethodError: org.gotti.wurmunlimited.modsupport.CreatureTemplateBuilder.headbuttDamString(Ljava/lang/String;)Lorg/gotti/wurmunlimited/modsupport/CreatureTemplateBuilder; at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:354) at com.wurmonline.server.creatures.CreatureTemplateCreator.createCreatureTemplates(CreatureTemplateCreator.java) at com.wurmonline.server.Server.startRunning(Server.java:779) at com.wurmonline.server.ServerLauncher.runServer$1(ServerLauncher.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.gotti.wurmunlimited.modloader.server.ProxyServerHook$1$1.invoke(ProxyServerHook.java:56) at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:344) at com.wurmonline.server.ServerLauncher.runServer(ServerLauncher.java) at com.wurmonline.server.gui.WurmServerGuiController.startDB(WurmServerGuiController.java:1319) at com.wurmonline.server.gui.WurmServerGuiMain.main(WurmServerGuiMain.java:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at javassist.Loader.run(Loader.java:288) at org.gotti.wurmunlimited.serverlauncher.DelegatedLauncher.main(DelegatedLauncher.java:30) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at javassist.Loader.run(Loader.java:288) at org.gotti.wurmunlimited.serverlauncher.ServerLauncher.main(ServerLauncher.java:33) Caused by: java.lang.NoSuchMethodError: org.gotti.wurmunlimited.modsupport.CreatureTemplateBuilder.headbuttDamString(Ljava/lang/String;)Lorg/gotti/wurmunlimited/modsupport/CreatureTemplateBuilder; at org.jubaroo.wurmunlimited.mods.dragonmountmod.creatures.BlueDrake.createCreateTemplateBuilder(BlueDrake.java:43) at org.gotti.wurmunlimited.modsupport.creatures.ModCreatures$1$1.invoke(ModCreatures.java:101) at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:344) ... 24 more [12:21:09 PM] INFO com.wurmonline.server.Server: Shutting down at: java.lang.Exception at com.wurmonline.server.Server.shutDown$1(Server.java:3633) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.gotti.wurmunlimited.modloader.server.ProxyServerHook$8$1.invoke(ProxyServerHook.java:232) at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:344) at com.wurmonline.server.Server.shutDown(Server.java) at com.wurmonline.server.Server.shutDown(Server.java:3625) at com.wurmonline.server.ServerLauncher.runServer$1(ServerLauncher.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.gotti.wurmunlimited.modloader.server.ProxyServerHook$1$1.invoke(ProxyServerHook.java:56) at org.gotti.wurmunlimited.modloader.classhooks.HookManager.invoke(HookManager.java:344) at com.wurmonline.server.ServerLauncher.runServer(ServerLauncher.java) at com.wurmonline.server.gui.WurmServerGuiController.startDB(WurmServerGuiController.java:1319) at com.wurmonline.server.gui.WurmServerGuiMain.main(WurmServerGuiMain.java:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at javassist.Loader.run(Loader.java:288) at org.gotti.wurmunlimited.serverlauncher.DelegatedLauncher.main(DelegatedLauncher.java:30) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at javassist.Loader.run(Loader.java:288) at org.gotti.wurmunlimited.serverlauncher.ServerLauncher.main(ServerLauncher.java:33)
  19. Thanks so much Brash - fixed all the issues now, absolutely lifesaver