Hello,
i've started a Runuo 2.0 (build 4628.34607) server some years ago and now i've wanted to start a new one with newest ServUo releases to create new original Systems.
I wanted to keep my old client folder ( it tooks years to customize it, i use UO Version 6.0.1.10 patch 72 ) on new version but when i log in and trasfer me on Felucca (map where my shard play) i see weird things happening on the world . Trees have no leaves and somewhere on the towns there are scarecrows. Seems like different Emulator versions uses different ItemID for statics. I've tryed with other version of Runuo too (2.3, 2.1 ect..) but the issue remains. How can i fix this madness?
Thanks
 

Attachments

  • new Emulator.jpg
    new Emulator.jpg
    374.1 KB · Views: 12
  • 2.0.jpg
    2.0.jpg
    521.6 KB · Views: 12
You would go to Scripts->Misc->MapDefinitions.cs and then alter
Code:
RegisterMap(0, 0, 0, 7168, 4096, 4, "Felucca", MapRules.FeluccaRules);
to this
Code:
RegisterMap(0, 0, 0, 7168, 4096, 0, "Felucca", MapRules.FeluccaRules);
- <season> : Season of the map. 0 = Spring, 1 = Summer, 2 = Fall, 3 = Winter, 4 = Desolation
 
Back