demented submitted a new resource:

XWorld (XSpawner Addon or Standalonee) - xworld, world

This can Be StandAlone or an Xspawner Addon, what this does is creates world, Step by step and more customizable than CreateWorld.a CreateWorld replacement or side by side with CreateWorld.

to make it an Xspawner Addon..Look for
AddLabel( 45, 120, 52, "Delete World" );
AddButton( 25, 120, 0x845, 0x846, 10003, GumpButtonType.Reply, 0 );
[/qoute]

add

[qoute]
AddLabel( 165, 80, 52, "XWorld" );
AddButton(145, 80, 0x845, 0x846, 13000, GumpButtonType.Reply, 0 );

then just below add this line...
case 13000:
{
CommandSystem.Handle( from, String.Format( "{0}xworld", prefix ) );
CommandSystem.Handle( from, String.Format( "{0}spawner", prefix ) );
break;
}
or if you dont here is a edited REV1.4 Version of XspawnerMainGump with the edits in it.....


Read more about this resource...
 
Last edited:
this one allows more easier customizing witha little programming know how and allows more in=depth custom spawn of specific thing and little easier lag control on older systems
 
Back