Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 881 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 881 Bytes

misc-gamebuilder

Gamebuilder

Pageobject for EQdkp Plus, which allows creating the basic structure of games using a GUI

Usage

  • Put the file gamebuilder_pageobject.class.php into the folder core/pageobjects/ of a EQdkp Plus installation
  • Put the file gamebuilder.html into the folder templates/base_template/ of the same EQdkp Plus installation
  • Open the file core/routing.class.php and extend the $arrStaticRoutes array (Line 30) by adding 'gamebuilder' => 'gamebuilder', into the array.
		private $arrStaticRoutes = array(
			'settings'		=> 'settings',
			'login'			=> 'login',
			'mycharacters'	=> 'mycharacters',
			'search'		=> 'search',
			[...]
			'gamebuilder' 	=> 'gamebuilder',
		);