• 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!

[Modern ACC] Simple skill show

Raggaer

Godly Member
Joined
Jul 25, 2012
Messages
1,557
Solutions
8
Reaction score
957
Location
Spain
Hello, this is basically a simple skill show I made for train my skills.
- Screenshot :

Untitled-2.png

- How to install this :

1 - Go to
Code:
\injections\character_view
in your Modern ACC folder
2 - Create a new folder called skills, and create a new file inside called Injection.php
3 - Open injection.php and paste this code

PHP:
<?php
	$player = $GLOBALS['player']; 
	$player->getId(); 
	
	
	echo' <br /><center><table width=80% border="1" cellpadding="2" cellspacing="1" style="border: 0px solid #000;">
	<tr align="center" bgcolor="#cfdfe1">
		<td>Level</td>
		<td>Magic level</td>
		<td>Fist</td>
		<td>Club</td>
		<td>Sword</td>
		<td>Axe</td>
		<td>Distance</td>
		<td>Shielding</td>
	</tr>
	
	
	<tr align="center">
		<td>
		'.$player->getLevel().'
		</td>
		<td>
		'.$player->getMagLevel().'
		</td>
		<td>
		'.$player->getSkill(1).'
		</td>
		<td>
		'.$player->getSkill(2).'
		</td>
		<td>
		'.$player->getSkill(3).'
		</td>
		<td>
		'.$player->getSkill(4).'
		</td>
		<td>
		'.$player->getSkill(5).'
		</td>
		<td>
		'.$player->getSkill(6).'
		</td>
	
	
	</tr>
	</table></center>
	
	';
	
	
?>

We are done! hope you like it
 
Back
Top