Search results

  1. Grimoric

    starting C# help wanted

    i++ means "tell me the value of i and then increment it" ++i means "increment i and then tell me the value" In both cases the variable is incremented, they are pre-increment, post-increment operators. If you take the value of both expressions in exactly the same cases, the result will differ...
  2. Grimoric

    runuo.com

    It have a db failure at the moment, does anyone have ant information about the situation? Did we lose it this time, it is not meant to be in a negative to anyone? -Grim
  3. Grimoric

    Request of a extra feature in Scripts/Multis/BaseCamp.cs

    It was not meant to be a smart-ass comment. I never thought of override base class and move the code one step down. I tried to hard to keep everything in the base class, I didn't know how to access the information in another way. Thank you for a solution that works, you saved me a lot of time...
  4. Grimoric

    Request of a extra feature in Scripts/Multis/BaseCamp.cs

    RemoveComponent from camp would be fine sins DeleteItem already exists. public virtual void RemoveComponent( Item item ) { m_Items.Remove( item ) ; } How did you planned to reach a private variable inside a inherited class? This is my code sins we been moved to script support, :) using...
  5. Grimoric

    Request of a extra feature in Scripts/Multis/BaseCamp.cs

    This is the issue I got and I can work around it by duplicate camp spawn code if needed but I thought it would be a core issue. Or are there another solution to keep a item after a despawn that I have missed? -Grim
  6. Grimoric

    Request of a extra feature in Scripts/Multis/BaseCamp.cs

    What I'm asking for is to add this 4 lines into BaseCamp.cs public virtual void RemoveItem( Item item ) { m_Items.Remove( item ) ; }
  7. Grimoric

    Request of a extra feature in Scripts/Multis/BaseCamp.cs

    In item.cs it will be delete, I need to remove it from BaseCamp Item list. Then a camp despawn it uses this function and kill all items listed in m_Items. public override void OnAfterDelete() { base.OnAfterDelete(); for ( int i = 0; i < m_Items.Count; ++i ) m_Items[i].Delete()...
  8. Grimoric

    Request of a extra feature in Scripts/Multis/BaseCamp.cs

    Hi, We have a add feature in this file but we can't remove a item from the despawn list after it have been spawned without making a own modifications inside this file. This is important if we spawn a item in a camp that we wish let the player keep it after the camp have despawn. Existing Add...
  9. Grimoric

    Looking for a host

    I would get a separate cheap webbhotell with free transfer to host the client. It would be easy to make a bandwidth overload attack on the server by downloading it from multi sources at ones in a loop. (a parallel torrent solution would also work there you use your own computer) "Free...
  10. Grimoric

    UODEMO Scripts

    New version of the project. I have added cross references to templates. Check the spawn template #1577 "Flock of Sheep" as a example. Script colors have changed and can be edited in the CSS file. -Grim
  11. Grimoric

    UODEMO Scripts

    Hi, I just wanted to share a small project i just started on. I need to get some information about crafting menus inside Ultima Online Demo files but it was to confusing to keep track of function calls between files inside notepad++ so I created html files that holds the information. Blue is...
  12. Grimoric

    So, Client Versions

    If you use the client made from the era you wish to mimic you get the best experience. But some old clients like UOR is not supported anymore by ServUO.
  13. Grimoric

    Client Freezes at Login

    If you wish to run a older client like 5.0.8.3 you have to use: https://github.com/ServUO/ServUO/archive/0fcd1a196b1311b234b61d2f2f53d578793587d2.zip ...or another distro, ServUO's issue is explained here: https://www.servuo.com/threads/servuo-and-uo-mondains-legacy.6902/ -Grim
  14. Grimoric

    Perhaps Something To Be Aware Of....

    It's not dangerusas as Voxpire wrote, it depends on the DNS wildcard settings https://www.dnswatch.info/dns/dnslookup?host=*.servuo.com You can write anything in front of xxx.serveruo.com it will take you to the same site. It have probable been logged by google throw a bookmark file that have...
  15. Grimoric

    UO Demo/UO:98

    If i'm not mistaken, there was Batlin (reverse engineering), Bicchus, Derrick (uosecondage.com) and Garret that worked on this project. I asked Derrick for some help with figure out witnessCrime function in the demo back in 2016 and he told me they have data not released to the public and it...
  16. Grimoric

    Need a second set of eyes: Stumped by Serializer issue :-/

    I'm not on a computer with ServUO installed at the moment, but you cant read m_SecondPet in version 1. case 1: { // if( m_SecondPet != null ) // m_SecondPet = reader.ReadMobile(); m_AI =...
  17. Grimoric

    ServUO and UO Mondain's Legacy

    You can try this client. I do run it and know it works 100% and it incl Razor in the installation. https://www.servuo.com/attachments/ultima-online-uot2a-v5-0-9-1-rev1-grimoric-zip.7009/ -Grim Edit: ServUO is broken, I just downloaded the last version and it do not work with 5.0.9.1 anymore...
  18. Grimoric

    ServUO and UO Mondain's Legacy

    You will need to make some changes by hand, ML have trammel. The two things that pops upp in my head is. - Change Publicmoongate.cs and moonstones.cs to stop players to crossover to Trammel. - Changes all start locations to Felucca in CharacterCreation.cs so they don't starts in Trammel. Edit...
  19. Grimoric

    ServUO and UO Mondain's Legacy

    If you wish to only have Felucca just register this line. RegisterMap( 0, 0, 0, 7168, 4096, 0, "Felucca",MapRules.FeluccaRules ); <index>, <mapID>, <fileIndex>, <width>, <height>, <season>, <name>, <rules> Felucca <mapID>, <fileIndex> = 0, 0 Trammel <mapID>, <fileIndex> = 1, 1 -Grim
  20. Grimoric

    ServUO and UO Mondain's Legacy

    Please try to change map rules inside MapDefinitions.cs to: RegisterMap(1, 1, 1, 7168, 4096, 0, "Trammel", MapRules.TrammelRules); -Grim

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back