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

Windows Problem with new looktypes. It appears as mount instead outfit

Joined
Jul 18, 2014
Messages
193
Solutions
2
Reaction score
15
Hi, im trying to put new looktypes and i did it with Object Builder, but when i tried to see how it looks in game, it says the looktype doesnt exists, so i tried putting it as a mount and it appeared. So, i dont know if in objectbuilder exists an option who specifies if the looktype is for outfit or mount. Please help.
Thanks :)
 
You simply add the outfit/mount in objectbuilder to looktype tab and then in outfis.xml you enable the outfit with the outfit id etc.
Then restart the server and it should work just fine.
 
You simply add the outfit/mount in objectbuilder to looktype tab and then in outfis.xml you enable the outfit with the outfit id etc.
Then restart the server and it should work just fine.
Yes i did that, but it doesnt appears. Even i tried with command /looktype id and it says the looktype doesnt exists
 
@Zoe Skandinavia looktype.lua
Code:
    if lookType >= 0 and lookType ~= 1 and lookType ~= 135 and lookType ~= 411 and lookType ~= 415 and lookType ~= 424 and (lookType <= 160 or lookType >= 192) and lookType ~= 439 and lookType ~= 440 and lookType ~= 468 and lookType ~= 469 and (lookType < 474 or lookType > 485) and lookType ~= 501 and lookType ~= 518 and lookType ~= 519 and lookType ~= 520 and lookType ~= 524 and lookType ~= 525 and lookType ~= 536 and lookType ~= 543 and lookType ~= 549 and lookType ~= 576 and lookType ~= 581 and lookType ~= 582 and lookType <= 595 then
Maybe in this line is answer for your problem.
 
Last edited:
@Zoe Skandinavia looktype.lua
Code:
    if lookType >= 0 and lookType ~= 1 and lookType ~= 135 and lookType ~= 411 and lookType ~= 415 and lookType ~= 424 and (lookType <= 160 or lookType >= 192) and lookType ~= 439 and lookType ~= 440 and lookType ~= 468 and lookType ~= 469 and (lookType < 474 or lookType > 485) and lookType ~= 501 and lookType ~= 518 and lookType ~= 519 and lookType ~= 520 and lookType ~= 524 and lookType ~= 525 and lookType ~= 536 and lookType ~= 543 and lookType ~= 549 and lookType ~= 576 and lookType ~= 581 and lookType ~= 582 and lookType <= 595 then
Maybe in this line is answer for your problem.
Alright! It worked ^^ I'll try it for monsters. Thanks:)
 
Back
Top