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

Vocation Familiars different skins

bergamoth

Member
Joined
Jul 26, 2021
Messages
24
Solutions
2
Reaction score
14
Hello! It's me again!

I wanna change the custom familiars skins, but everytime i do it on LUA it change to the invisible sprite!

Anyone know a workaround it?

Thanks <3
 
What server version?
Can you show us the script you've created / attempted to use?
 
What server version?
Can you show us the script you've created / attempted to use?
TFS 1.3, same script, really, only changed the lookType = 529, in the familiars, but i guess its something else f****ing it up cus even if i replace with the OG script it changes to the invis. sprite.. I guess its cus the char in question used for testing is lvl 10 or something.. Gonna test it more today
 
It's weird, right?

I changed here, in the knight_familiar.lua.

This is the original code, my change was in the looktype, i simply changed the number 991 to 21 (or any other) and it showed the invis sprite.

local mType = Game.createMonsterType("Knight familiar")
local monster = {}

monster.description = "a knight familiar"
monster.experience = 0
monster.outfit = {
--lookType = 991,
lookHead = 0,
lookBody = 0,
lookLegs = 0,
lookFeet = 0,
lookAddons = 0,
lookMount = 0
}
 
Back
Top