- 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:
Watch it in action:
Properties / Tool Gump:
Z Order Gump:
Preview Gump:
Gump Editing In Action:
Mocking up a gump for a XML based addon generator:
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
- ServUO
- Vorspire's VitaNex Core
- Copy the compendium folder into your scripts folder tree
- That's it. It's just drag and drop.
- [editpage pagename
- [viewpage pagename
Code:
if (Compendium.g_CompendiumRenderers.ContainsKey("pagename"))
{
CompendiumPageGump gump = new CompendiumPageGump(caller, Compendium.g_CompendiumRenderers["pagename"]);
gump.Send();
}
Watch it in action:
Properties / Tool Gump:
Z Order Gump:
Preview Gump:
Gump Editing In Action:
Mocking up a gump for a XML based addon generator: