Search results

  1. Kalamus

    "Client files not found"

    Just looked through your code again. Didn't bother seeing if you changed anything other than the ClientDataPath variable. Sure enough I found your mistake. You are changing the 'if' check of the variable and not the variable itself. Change this code:if (ClientDataPath == @"C:\Program Files...
  2. Kalamus

    "Client files not found"

    Compile.MONO is for Unix systems. Compile.WIN is for Windows systems.
  3. Kalamus

    "Client files not found"

    First thing I probably should of asked was did you recompile the server. OpenUOSDK.cs is a server file and any changes you make won't show up unless you recompile. Besides that I'm clueless as to what would be causing your issue because I can't reproduce it.
  4. Kalamus

    "Client files not found"

    The only thing I can think of is Directory.Exist is returning false because it's getting Access Denied because of user permissions. You can try running the server as admin as see if that fixes the issue. Assuming the directory does exist and the path spelling is right in the edits you made, then...
  5. Kalamus

    Hello all

    Welcome to ServUO :).
  6. Kalamus

    Auto restart & backups?

    Emergency Backup is a tool included in ServUO that runs externally from the server. You can call it after your world saves to have it do backups and it won't slow down your save times. It can't auto-restart a server per say. The server runs the backup program, not the other way around. The...
  7. Kalamus

    Hello, im here to tinker with UO.

    Welcome to ServUO :).
  8. Kalamus

    Adding Custom Wearables (clothing, armor, weapons)

    Think it refers to #2 of 'Adding your paper doll gump art' in the tutorial above.
  9. Kalamus

    UOSteam - Bye Bye?

    Yeah it was all keep private to prevent hacking and exploits that Razor is prone too. Also for anyone wanting to grab it while it's still up, here is the download link for the final version. http://uos-update.github.io/UOS_Latest.exe
  10. Kalamus

    UOSteam - Bye Bye?

    Yes I'm sure in time when UO changes their packets again it will break UO Steam. Thanks for the heads up. I've been delaying updating mine due to being lazy. I went ahead and grabbed the final release and added it to my archives. I also prefer it to Razor which will probably cause me to stop...
  11. Kalamus

    My Updates Questions, and Oddity Tread

    Issue resolved via teamviewer. 'IllnessesBook' was missing a parameterless constructor.
  12. Kalamus

    My Updates Questions, and Oddity Tread

    Sounds like one of your custom items is missing a constructor. Can you run the server with -debug args to get a better crash report or post your item scripts?
  13. Kalamus

    My Updates Questions, and Oddity Tread

    Might help if you post the crash report :). Not much to go off of without knowing what's crashing.
  14. Kalamus

    My Updates Questions, and Oddity Tread

    Note it's ServerList.cs not Datapath.cs :) Have you had anyone outside your network try to connect? Could be your router is doing some kind of funky loop back with you trying. If you want you can PM your IP and I'll double check it for you.
  15. Kalamus

    My Updates Questions, and Oddity Tread

    Gonna assume you are using Windows so I would also check your Windows Firewall and make sure the server is allowed. You can also set the IP manually in ServerList.cs in case the auto detect is having problems detecting your public IP. Change:public static readonly string Address = null; To...
  16. Kalamus

    My Updates Questions, and Oddity Tread

    Correct if you use RandomMinMax(10, 20) on a switch statement and you have cases 0-10 then those would never get used. You aren't going to see unreachable code for switch statements because the value you are checking could be anything and that could change during runtime. e.g. If you are...
  17. Kalamus

    My Updates Questions, and Oddity Tread

    Yes you will get errors if you try to change a readonly value outside a constructor or it's declaration. In fact you won't even be able to compile if you tried to do this. You'll get an error similar to this: 'A readonly field cannot be assigned to (except in a constructor or a variable...
  18. Kalamus

    My Updates Questions, and Oddity Tread

    m309 hit some of these on the head but here's a recap. Core.TickCount is in milliseconds so yes 1000 = one second. As m309 said, readonly variables can only be assigned via declaration or inside the class constructor. Think of it like a safety net. If you want a variable to be constant and...
  19. Kalamus

    Starting My First UO Server

    Another note on recompiling. You only have to recompile if changes are made to the files in the 'Server' directory. The Server has a built in compiler and recompiles any changes you make the to files in the 'Scripts' directory on startup. So that means you can change stuff like Datapath.cs or...
  20. Kalamus

    Starting My First UO Server

    You should change both Datapath.cs and OpenUOSDK.cs to point to your server files. I say server files because you should be using a different copy of the client for the server. Running both the server and the client on the same install can produce IO errors. Line you need to change in...

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back