Ausimus

Developer
  • Content Count

    917
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Ausimus

  1. I have seen this problem before don't know why it happens, disband the deed and re-found it. Make sure you select a kingdom you wish to spawn at the starter deed, as well as checking the box to make it a permanent settlement.
  2. you sure your date and time isn't one month off? if not, click the clock on start menu > change date and time settings > click change date and time > click Change calendar settings. From there you can change the format.
  3. Remove them now, just for the lols.
  4. Another large map, I tried to bridge the gap between plenty of water for boats as well as plenty of land to traverse via horse. Made in World Machine, and MeshGenGui. Download https://www.dropbox.com/s/tlss2rpohrevdwh/Aus_Avalon_8192_NMM.zip?dl=0
  5. profiles

    make sure not to change "default" under your username, in the launcher. Its easily done.
  6. Yea, long as you are the person that attaches the last piece of the boat, cart, or anything for that matter that requires multiple pieces you will be the owner when its complete. I would just scratch it off as someone trying to be nice rather than someone being a troll and trying to steal your shipbuilding skill. There is no need to bash it unless you just want to rage and break things. And as Wargasm stated put it in a house till complete.
  7. take the test as a gm 100 percent success chance. besides that its rng if you meet the min requirements.
  8. no settings, just put it down and have a freedom gm convert it to freedom isles. works on home servers as well as non. gm activate wand > right click lady > change kingdom
  9. place the lady of the lake down, set its kingdom to Freedom Isles, Freedomers can then become kingdom ruler. It works fine and I think the office titles are rather funny. you will be given all kingdom items when you pass the test just as any other kingdom leader. the regalia exists for it.
  10. The data file for pmk is there, don't think there is a way of actually getting them to spawn in due to the pmk not existing in the database. you should be able create a new kingdom thou and make the id match what it does in wurm online via the database then disband the pmk afterwards to make them work.
  11. Gates cannot be rotated, house walls/doors can.
  12. To become a god the player needs to win an end game scenario item called a Key to The Heavens on the Epic cluster and use said item. This in "ascends" the player to demigod. After which if all goes well and they are not killed on the Valrei map, and win a scenario where there template god can promote an ally, they are promoted to full god.
  13. attend sermons, host sermons, have a priest listen to you if your a follower, listen to followers if your a priest. sac some onions, desecrate a BL altar (nathan, tosiek, lib), bury humanoid corpses.
  14. you lose alignment for lockpicking, anything thievery related loses alignment, not gain.
  15. Most of this spell already exists with wild growth you just cast it until the vegetation is gone, (one cast past shriveled). I know the spell works on hedges to increase there age but i don't believe it destroys them. +1 to making wild growth poof hedges past there final growth stage. -1 for a complete new spell as most it already exists.
  16. That command wouldn't work, would just lock the player out of the account, if it even worked at all. To allow another player to connect to an preexisting account, open up the wurmplayers database and change there password, to match the password to that of a player you wish to be able to connect. steamid is stored in the password its self.
  17. Collada dae is Wurm Unlimited compatible and should work fine, just replace model name .wom in client jar with exported preferred model name .dae. Then place your custom assets into the Graphics.jar for Wurm Unlimited.
  18. PVP Oriented map. Steppe in the center large enough to accommodate a 200x200 HoTA zone, just teleport to 1024x1024 to be in the exact center. Download Link https://www.dropbox.com/s/9i3gy11l26cd9el/Aus_Orion_2048.zip?dl=0 Download Link https://www.dropbox.com/s/9i3gy11l26cd9el/Aus_Orion_2048.zip?dl=0
  19. Got bored decided to make a Xanadu size map, liked the look, figured I would release it to the public. Created in World Machine. Includes all image files, and actions file. Download Link https://www.dropbox.com/s/slx5h4qav3ots1j/Aus_Titan_8192.zip?dl=0
  20. That server response says the player is not found, and they have not logged into your server before. Make sure your spelling the name right.
  21. First you need to add a player as a CA, then toggle CA chat command. I think its #toggleca (I think that's the command anyway). it makes no difference whether its pvp, Freedom, or non home server.
  22. private static void createCrabTemplate(int id, String name, String longDesc, Skills skills) throws IOException { skills.learnTemp(102, 12.0F); skills.learnTemp(104, 16.0F); skills.learnTemp(103, 5.0F); skills.learnTemp(100, 4.0F); skills.learnTemp(101, 6.0F); skills.learnTemp(105, 20.0F); skills.learnTemp(106, 4.0F); skills.learnTemp(10052, 16.0F); <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Weaponless Fighting int[] types = new int[]{7, 3, 6, 13, 27, 32, 51, 48, 12}; CreatureTemplate temp = CreatureTemplateFactory.getInstance().createCreatureTemplate(id, name, longDesc, "model.creature.quadraped.crab", types, (byte)3, skills, (short)5, (byte)0, (short)30, (short)30, (short)30, "sound.death.insect", "sound.death.insect", "sound.combat.hit.insect", "sound.combat.hit.insect", 0.7F, 5.0F, 0.0F, 6.0F, 0.0F, 0.0F, 0.8F, 50, new int[]{900, 900, 308, 308, 900}, 10, 30); temp.setHandDamString("claw"); temp.setKickDamString("claw"); temp.setMaxAge(100); temp.setArmourType(4); temp.setBaseCombatRating(5.0F); temp.combatDamageType = 1; temp.setMaxGroupAttackSize(3); temp.setMaxPercentOfCreatures(0.03F); }