to answer your question its a no.
i wanted to put custom aura in the client(which i can download from almost anywhere xD)
i will trigger them via script using @effect xD
i need it for my custom armor. cause im planning to make an effect while your wearing it :>
since i plan on making tiers for my armor sets. like fighters armor, warriors armor, captains armor, hero's armor
my sample is right bellow but i doesn't say anything about the tier but lets say that is the item for hero's armor
you may try it its cool(note the effect doesn't show when you turn off effect in the game- i think you already know this though xD)
item_db2
31100,customsample,customsample,5,5,0,10,,10,,1,0xFFFFFFFF,7,2,4,,1,1,10,{},{ callfunc "auragg"; },{ callfunc "auragg1"; }
create a function script
function script auragg {// triggers when equipping your item
set aura,1;
freeloop(1);
while (aura==1) {//reason for looping this due to players who can't see them while they load to the map. you can test it via dual log while the other one is using the item with effect. then use another character to view him @refresh or load to that map and check that character with the aura. his aura disappears if you remove the loop cause some effects just last for a second or so.
specialeffect2 125;// see effect_list for this
sleep2 1000;
}
freeloop(0);
}
function script auragg1 {// triggers when unequipping your item
set aura,0; // this will turn off the current effect you are looping
}