Jump to content
  • 0

custom aura.


ayennnnnnn

Question


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   1
  • Joined:  08/20/13
  • Last Seen:  

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


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  404
  • Reputation:   245
  • Joined:  12/17/11
  • Last Seen:  

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; }
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   1
  • Joined:  08/20/13
  • Last Seen:  

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.
 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  404
  • Reputation:   245
  • Joined:  12/17/11
  • Last Seen:  

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; }

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...