UO Compendium

UO Compendium 1.0

No permission to download
Requirements
Vorspire's VitaNex Core
This is an in game WYSIWYG gump editor similar to a WIKI. Create pages such as shard rules, monster lore, weapon and artifact lore and display them to players.

The primary goal of this system is to communicate information to your playerbase. It is expandable so that new widgets can be added to provide custom actions if needed, but they are not provided.

Common uses may include, but are not limited to:
  • Tutorial Gumps
  • Item Encyclopedia
  • Monster Compendium
  • Instructional Gumps
  • Shard Rules Gumps
  • Shard FAQ Gumps
Requirements:
  • ServUO
  • Vorspire's VitaNex Core
Installation:
  1. Copy the compendium folder into your scripts folder tree
  2. That's it. It's just drag and drop.
Commands:
  • [editpage pagename
  • [viewpage pagename
Both commands are only accessible to staff. To display a gump to a player, you will need to add the gump call to a command, NPC, or item.

Code:
  if (Compendium.g_CompendiumRenderers.ContainsKey("pagename"))
  {
    CompendiumPageGump gump = new CompendiumPageGump(caller, Compendium.g_CompendiumRenderers["pagename"]);
    gump.Send();
  }

Watch it in action:
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.

Properties / Tool Gump:
propspage.PNG


Z Order Gump:
zorder-1.PNG



Preview Gump:
ingamegump.PNG


Gump Editing In Action:
compendium.PNG


Mocking up a gump for a XML based addon generator:
addon_gen_mockup.PNG
Author
Praxiiz
Downloads
327
Views
2,978
First release
Last update
Rating
5.00 star(s) 3 ratings

More resources from Praxiiz

Latest Updates

  1. Compatibility Update

    Updated to be compatible with recent changes to ServUO's gump system. All credit goes to...
Back