Implemented EQ + skills + full outfit display in character profile

This commit is contained in:
Znote
2019-11-10 09:43:00 +01:00
parent b65c860b66
commit 6fd5aa5409
21 changed files with 554 additions and 0 deletions

View File

@@ -596,6 +596,18 @@
'imageServer' => 'http://outfit-images.ots.me/animatedOutfits1099/animoutfit.php'
);
// Show advanced inventory data in character profile
$config['EQ_shower'] = array(
'enabled' => true,
'equipment' => true,
'skills' => true,
'outfits' => true,
// Player storage (storage_value + outfitId)
// used to see if player has outfit.
// see LUA scripts folder for otserv code
'storage_value' => 10000
);
// Level requirement to create guild? (Just set it to 1 to allow all levels).
$config['create_guild_level'] = 8;