• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

The Last You Copied !

Code:
	<defenses armor="30" defense="30">
		<defense name="healing" interval="1000" chance="25" min="100" max="195">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
		<defense name="outfit" interval="1500" chance="40" monster="Energy Overlord" duration="3000">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
		<defense name="outfit" interval="1500" chance="40" monster="Fire Overlord" duration="3000">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
		<defense name="outfit" interval="1500" chance="40" monster="Earth Overlord" duration="3000">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
		<defense name="outfit" interval="1500" chance="40" monster="Ice Overlord" duration="3000">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
	</defenses>
eheuhee
 
effective.
Power
لُلُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ
 
<?php
/* Znote AAC Sub System
- Used to create custom pages
- Place the contents of the page in /layout/sub/ folder.
: You don't need to include init, header or footer.
Its already taken care of, just write the contents you want.
Then add that page to the configuration below. Config syntax:
'PAGENAME' => array(
'file' => 'fileName.php',
'override' => false
),
................
There are 2 ways to view your page, by using sub.php file, or by overriding an existing default page.
1: yourwebiste.com/sub.php?page=PAGENAME
2: By having override => true, then it will load your sub file instead of the default znote aac file.
*/
$subpages = array(
// website.com/sub.php?page=blank
'blank' => array(
// layout/sub/blank.php
'file' => 'blank.php',
// false means don't run this file instead of the regular file at website.com/blank.php
'override' => false
),
'houses' => array(
'file' => 'houses.php',
'override' => false
),
'downloads' => array(
'file' => 'downloads.php',
'override' => false
),
);
?>
 
Back
Top