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

AAC Not showing outfits Znote power gamers

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
921
Location
Chile
Hello guys, i have this little problem
8ng_ERl.png


I use tfs 0.3 maybe this doesnt work because i use different ports? i have no idea D: i tried to investigate but didnt find anything that could be fixed by me, if anyone could help me plz would be awesome

If you need more information ask me because i have no idea
thanks!
 
When loading the characters from the database, you need to include the data columns 'lookbody', 'lookfeet', 'lookhead', 'looklegs', 'looktype', 'lookaddons'.

Sample of showing outfit, $player is assumed to be a player sql array data resource. (from etc mysql_select_single, or a row from mysql_select_multi).
PHP:
<?php if ($loadOutfits): ?>
    <img src="<?php echo $config['show_outfits']['imageServer']; ?>?id=<?php echo $player['looktype']; ?>&addons=<?php echo $player['lookaddons']; ?>&head=<?php echo $player['lookhead']; ?>&body=<?php echo $player['lookbody']; ?>&legs=<?php echo $player['looklegs']; ?>&feet=<?php echo $player['lookfeet']; ?>" alt="img">
<?php endif; ?>
 
When loading the characters from the database, you need to include the data columns 'lookbody', 'lookfeet', 'lookhead', 'looklegs', 'looktype', 'lookaddons'.

Sample of showing outfit, $player is assumed to be a player sql array data resource. (from etc mysql_select_single, or a row from mysql_select_multi).
PHP:
<?php if ($loadOutfits): ?>
    <img src="<?php echo $config['show_outfits']['imageServer']; ?>?id=<?php echo $player['looktype']; ?>&addons=<?php echo $player['lookaddons']; ?>&head=<?php echo $player['lookhead']; ?>&body=<?php echo $player['lookbody']; ?>&legs=<?php echo $player['looklegs']; ?>&feet=<?php echo $player['lookfeet']; ?>" alt="img">
<?php endif; ?>
ooh so you say im missing colums?
Also, is it possible to load outfits like for example Goku outfit, if the player is using it?
 
ooh so you say im missing colums?
Probably, need to look at the code to figure that out.

Also, is it possible to load outfits like for example Goku outfit, if the player is using it?
Only if your outfit image server supports (dragon ball?) outfits. The default one does not, and I do not know how to obtain it.
 
Probably, need to look at the code to figure that out.


Only if your outfit image server supports (dragon ball?) outfits. The default one does not, and I do not know how to obtain it.


Could you please tell me exactly where to put the code you send before? :D
 
Back
Top