• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

shop offer image

shawntio

Member
Joined
Apr 14, 2008
Messages
737
Reaction score
5
Location
sweden
hi i added red skull remover in shop offer to my aac but i can't see the image it's just an broken image and the id is 3 so i changed the name of the red skull to 3 like the id on the aac i tested both .gif and .jpg but it didn't work please reply thanks!
 
well, i changed it to png in shopsystem.php and the image but didn't work
Code:
				//Remove Red Skull
				if(count($offer_list['redskull']) > 0)
					foreach($offer_list['redskull'] as $redskull) {
						$main_content .= '<tr bgcolor="#F1E0C6"><td align="center"><img src="item_images/'.$redskull['id'].'.png"></td><td><b>'.$redskull['name'].'</b> ('.$redskull['points'].' points)<br />'.$redskull['description'].'</td><td align="center">';
						if(!$logged) $main_content .= '<b>Login to buy</b>'; else 
						$main_content .= '<form action="index.php?subtopic=shopsystem&action=select_player" method=POST><input type="hidden" name="buy_id" value="'.$redskull['id'].'"><input type="submit" value="Buy '.$redskull['name'].'"><br><b>for '.$redskull['points'].' points</b></form>';
						$main_content .= '</td></tr>';
 
i made a new folder in items
create a file called 3.png in folder htdocs/item_images/
facepalm.jpg
 
Back
Top