Search results

  1. Visam

    i might need some support here..

    if ( Utility.RandomMinMax(100,0) == 100 ) The 100 is in the minimum spot and the 0 is in the maximum spot if ( Utility.RandomMinMax(0, 100) == 100 ) //this would give it a 1 in 100 chance of dropping
  2. Visam

    Commission Vendor Crash

    I use a dark mode extension in chrome it may be messing it up. It's currently disabled does this show up better?
  3. Visam

    Commission Vendor Crash

    in the PlayerVendor.cs that you uploaded it's on line 757 line 598 is Start not Stop
  4. Visam

    Commission Vendor Crash

    I think the fix to your issue is: PlayerVendor.cs Line 757 m_PayTimer.Stop(); needs changed to: if (m_PayTimer != null) { m_PayTimer.Stop(); }
  5. Visam

    Error

    On line 51 Utility.RandomMinMax requires 2 values a minimum and a maximum. The missing maximum is causing all of the errors. Utility.RandomMinMax( MinValue, MaxValue ) 1578236304 Also, so you know this isn't a Vita-Nex issue, it should have been put in script support.
  6. Visam

    XML Spawners ... not able to use the 20 pages of the gump book anymore

    I just tested this on mine, it won't even save the entirety of one page (erases the last 2 lines). Update: I just setup a freshly downloaded copy of ServUO with no edits and a current classic client, and it does the same thing. Blue Books also won't save past the first page as well. 1578157219...
  7. Visam

    Name Of An Item

    I'm not sure what it's called but it works in caves ect... if you want to fake blackspace. you can also use it and the next set of graphics (0x3B27) over dirt for the following effect.
  8. Visam

    Horn Of Retreat

    use the command [Props target the horn modify DestLoc to where you want it to go. modify DestMap to the map you want it to go to. or put it on an xml spawner HornOfRetreat/DestLoc/(xxxx, yyyy, zzzz)/DestMap/MapName or if you wanted it as loot: using Server.Engines.Quests; // at top if it...
  9. Visam

    Void Creature System

    I havn't used the ones built into ServUO so can't really be sure how well they work, but I think supposed to work now. You'd need to setup spawners wherever you use them. I still use the one I posted back when. It should still work fine on current ServUO, I don't think I've needed to modify it...
  10. Visam

    OWLTR 4.0 for ServUO Pub 54

    Line 29 the s in system needs to be cap S MasterLooterSystem
  11. Visam

    I cant figure it out

    You should do what Falkor said above and you should remove the following section: public override int LabelNumber { get { return 1044330; //THIS NUMBER IS FOR A SMALL FORGE } }// Glass Blowing Forge Addon
  12. Visam

    Fish tank crafter

    From reading through the scripts it look like all it is repeatable but the last step only gives 400 gold instead of the deed the second time through. But it also had a wrong name in one of the spots that I'd assume would make it not work. Here it is corrected. using System; using...
  13. Visam

    Help with making quest doable only once.

    Sorry put the first edit a line below where it should have been. Try this. //Candy Apple using System; using System.Collections; using System.Collections.Generic; using Server.Items; using Server.Targeting; using Server.ContextMenus; using Server.Gumps; using Server.Misc; using Server.Network...
  14. Visam

    Help with making quest doable only once.

    The following line will not work with this type of quest. It isn't using the quest system that uses it so it will throw errors. public override bool DoneOnce{ get{ return true; } } This one should work. It uses XML Spawners account tag system to set a tag on the players account to show if it's...
  15. Visam

    Help with making quest doable only once.

    This quest isn't using the quest system so I don't believe this will work. The only way I know to get it to work (prolly others who knows) is by using xml spawners account tag system. It would be added like this: /* This file was created with Ilutzio's Questmaker. Enjoy! */ using System...
  16. Visam

    Weapon skill bonuses exceeding skill cap

    in AOS.cs search for: sk.ObeyCap
  17. Visam

    No argument given for 'nonTransMountedID' parameter error?

    From Ethereals.cs public EtherealMount(int itemID, int transMountedID, int nonTransMountedID, int transHue = 0, int nonTransHue = 0) also where I got the numbers from in the same file [Constructable] public EtherealCuSidhe() : base(0x2D96, 0x3E91, 0x3E91, DefaultEtherealHue)
  18. Visam

    No argument given for 'nonTransMountedID' parameter error?

    change public SkillMountCuShide() : base( 11670, 0x3E91 ) to public SkillMountCuShide() : base(0x2D96, 0x3E91, 0x3E91, DefaultEtherealHue)
  19. Visam

    'VirtueHelper' does not exist in the current context

    using Server.Services.Virtues;

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back