Nah im asking an auto program to the color of the outfit and the outfitIf you mean color on the sprites it should be pretty easy to do it any simple photo editor program.
It is already written, @Evan wrote ithe wants a bot with rainbow outfit func
Rainbow Outfit
Some of you have requested the rainbow outfit, here it is. It was merely for display.
![]()
Code:function rainbowOutfit(cid, looktype, index) local colors = {94, 77, 79, 82, 87, 90} local creature = Creature(cid) if not creature then return end creature:setOutfit({ lookType = looktype, lookHead = colors[((index) % 6) + 1], lookBody = colors[((index + 1) % 6) + 1], lookLegs = colors[((index + 2) % 6) + 1], lookFeet = colors[((index + 3) % 6) + 1] }) if index > 6 then index = 0 end addEvent(rainbowOutfit, 100, creature:getId(), looktype, index + 1) end
A good way to stop the rainbow outfit is to set the eventid to the character as a storage value, then use that storage value to end it when necessary.
Coooool i might even use it. Could you link me his thread?It is already written, @Evan wrote it
https://otland.net/threads/how-to-using-addevent.225292/#post-2168048Coooool i might even use it. Could you link me his thread?