ayennnnnnn Posted September 6, 2013 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 80 Reputation: 1 Joined: 08/20/13 Last Seen: October 20, 2018 Share Posted September 6, 2013 is it possible to have custom aura to a certain character only? or job? or GM only? Quote Link to comment Share on other sites More sharing options...
Najara Posted September 6, 2013 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 404 Reputation: 247 Joined: 12/17/11 Last Seen: Yesterday at 06:37 AM Share Posted September 6, 2013 It is with the @aura command, but that requires source modifications. You can attach a script like this to an item though - replace the "ID" with your effect number! Just note that this will merely work with effects that take a very short time, like no longer than 2 seconds because it loops endlessly. That's really the only solution I can think of. {},{ set effID,1; while(effID==1){if (!checkoption(0x2) && !checkoption(0x4) && !checkoption(0x40)) specialeffect2 ID; sleep2 360;}},{ set effID,0; } Quote Link to comment Share on other sites More sharing options...
ayennnnnnn Posted September 6, 2013 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 80 Reputation: 1 Joined: 08/20/13 Last Seen: October 20, 2018 Author Share Posted September 6, 2013 omg. xD sorry for being newbie. can you explain it? 1. @aura command do i use it ingame ? 2. take a very short time to work and endless loops this sound crucial XD ( if i change aura this will change all including gm and players ending up to same aura i change right? ) 3. let say i just change a custom aura for gm only and the player will have the normal aura still will have effects that take a very short time, like no longer than 2 seconds because it loops endlessly? sorry for being stupid here. xD please bare with me. Quote Link to comment Share on other sites More sharing options...
Najara Posted September 7, 2013 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 404 Reputation: 247 Joined: 12/17/11 Last Seen: Yesterday at 06:37 AM Share Posted September 7, 2013 1) The @aura command doesn't exist by default, you need to apply a patch for it or add it in manually. You can find it with the search function. 2) No, the script I sent you can attach to an equipment, I suggest something that isn't dropped by monsters. You just have your GMs equip them, and the aura will be applied. 3) Yes, it will. To find an effect to use open .../doc/effect_list.txt. Allow me to give you an example: {},{ set eff381,1; while(eff381==1){if (!checkoption(0x2) && !checkoption(0x4) && !checkoption(0x40)) specialeffect2 381; sleep2 5000;}},{ set eff381,0; } Quote Link to comment Share on other sites More sharing options...
Question
ayennnnnnn
is it possible to have custom aura to a certain character only? or job? or GM only?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.