Search results

  1. FaceMelter

    Ruins and Riches

    I don't know how many people are familiar with Djeryv's custom Ruins and Riches shard (previously Ultima Odyssey) but my friends and I have been having a great time playing it. A few days ago I noticed that the website: ruinsandriches.com where it's hosted with the forums has either gone down...
  2. FaceMelter

    NPC Portraits

    So, I'm plugging away at my current project and things are going well. I've relearned XmlSpawner (again, lol) and I'm happy with much of the custom things I've done so far. I've been using XmlSpawner for the backbone of my quest system and I want to modify the GUMP that pops up when players talk...
  3. FaceMelter

    Attach XmlValue on Player via XmlSpawner

    I've been digging though hundreds of posts and tutorials all day trying to get the proper syntax for this to work. If it's wrong, the spawner will give you error, but I've had multiple variations check out without errors and I still can't get it to attach to a player. So, I'm testing this with a...
  4. FaceMelter

    After Spell.Cast(), Targeting

    Is there a way to follow up the use of spell.Cast() with current target via script? Here's an example of what I've tried so far: int m_SpellID = this.SpellSelect; Spell spell = SpellRegistry.NewSpell( m_SpellID, attacker, this ); if ( spell !=...
  5. FaceMelter

    Making a Mobile wait at a Waypoint

    Hey guys! Back again with a question about Xmlspawner and Waypoints. I have a custom vendor running around the map with Xmlspawner's waypoint system. I'd like to find a way to make the vendor wait for a minute or two when a player tries to buy from them, and then continue on their current...
  6. FaceMelter

    Hotbar, almost...

    So, with some help from many of you guys, I've almost got a completely working hotbar for the classic client. The only thing that's not working is the Max Item limit. It's possible to crash if you have more than 10 items in the bag. I'd like you all to test this out and tell me what you think...
  7. FaceMelter

    Fun with Layers

    I've been working on a little snippet of code that equips and un-equips items by checking the layer they are on. if (mUseItem is BaseArmor) { var Layer = mUseItem.Layer; Item RemoveItem = from.FindItemOnLayer(Layer); mPouch.DropItem(RemoveItem)...
  8. FaceMelter

    For Each loops

    I am working on a gump, and I need to assign each of these variables in the foreach() loop. I tried looping the AddItem statement, but it did not work. I need to set each variable to item.ItemID as it processes the loop. int b1image = 0; int b2image = 0; int...
  9. FaceMelter

    Checking for equipment on Playermobile

    I've been typing away at custom sets of armor, and a few of my players want me to make some custom Ranger Armor. I've got it setup to require Dexterity instead of Strength. I want to make a check in the playermobile OnDamage to see if the player is wearing anything with my base class ...
  10. FaceMelter

    XmlEdit Dialog GUMP responses

    I've set up a simple dialog on an NPC with a yes / no question. Using XmlEdit: Gump: GUMP, Compassion, 1/The creature is wounded, Spare it? In XmlSpawner GUMP style 1 gives you a yes or no option. My question is how do I reference the choice? If the player says yes, I'd like the creature to...
  11. FaceMelter

    Xmlspawner Team property

    Are there any examples of how to use this property in the spawner? I've been told it can be used to make spawned creatures attack each other, but I'm not sure how to use this properly. Thank you all for any help!
  12. FaceMelter

    Custom XMLMobFacitons GUMP

    I would like to make a custom GUMP for the "checkmobfactions" command on my shard. I have added quite a few more factions to the list and it's all working properly, but I'd like to make a fancier GUMP to look at it with. I tried to use GUMP Studio, but it's giving me a register error. So, I'd...
  13. FaceMelter

    Port Forwarding Help

    I've been all over the place looking at tutorials on how to set up port forwarding. I used to have a direct connection, and set up was easy. I now have a modem with a wireless access point instead of a direct connection to the modem, and I can't seem to get outside clients to connect. Could...
  14. FaceMelter

    Hello

    Just started playing with ServUO. Liking what I see so far! Are there any big differences from RunUO I should know about?
Back