Jump to content

[atcommand] @aura


Rebel

Recommended Posts


  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  436
  • Reputation:   31
  • Joined:  02/19/12
  • Last Seen:  

@aura , by Zeph

I updated the @aura command, you can now add new aura using a /db/aura_db.txt without editing the source.
Also aura will be disabled if you're in PVP and WOE.

Here's the diff file.
Working with the Latest Commit 7f9f185

aura_2.4.diff

Credits to Zephyrus

Edited by Rebel
Updates.
  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  155
  • Topics Per Day:  0.03
  • Content Count:  647
  • Reputation:   16
  • Joined:  11/21/11
  • Last Seen:  

This is what i use! HAHA.

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

old release. :D

or maybe you can try list the post that related on @aura commands. haha

 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  155
  • Topics Per Day:  0.03
  • Content Count:  647
  • Reputation:   16
  • Joined:  11/21/11
  • Last Seen:  

yeah it's old but it's still working :3

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  436
  • Reputation:   31
  • Joined:  02/19/12
  • Last Seen:  

yeah. its a little bit different from @auraset.. :3

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

this is just like the @aura command of eAmod,

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  436
  • Reputation:   31
  • Joined:  02/19/12
  • Last Seen:  

this is just like the @aura command of eAmod,

 

 

 

@aura , by Zeph
 

Credits to Zephyrus

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.01
  • Content Count:  271
  • Reputation:   7
  • Joined:  01/06/12
  • Last Seen:  

Hello, I applied this on my server and it works fine, but there is a little problem to it, when I use @aura 5, it will say "Current Aura: 0", maybe it should be "Previous Aura" or there is a problem with the code, somehow its harmless, and can I request that when I use @hide the aura will disappear too, thanks for sharing

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

the 

 

Hello, I applied this on my server and it works fine, but there is a little problem to it, when I use @aura 5, it will say "Current Aura: 0", maybe it should be "Previous Aura" or there is a problem with the code, somehow its harmless, and can I request that when I use @hide the aura will disappear too, thanks for sharing

yeah, the msg show before the aura is set, maybe better "Your aura is set: %d. (Previous: %d)"

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  295
  • Reputation:   6
  • Joined:  10/14/12
  • Last Seen:  

How to auto disable this on woe to prevent lag? Thanks!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  436
  • Reputation:   31
  • Joined:  02/19/12
  • Last Seen:  

How to auto disable this on woe to prevent lag? Thanks!

 

just dont show effect when your on woe.. /effect will do..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  295
  • Reputation:   6
  • Joined:  10/14/12
  • Last Seen:  

So theres no way disabling it, but /effect. Some players liked to see skill effect on woes like land protect and stuff. Anyways, thank you very much!

Edited by Fresh prince
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  81
  • Reputation:   14
  • Joined:  08/17/12
  • Last Seen:  

nice thanks for share i will test this

 

mirror :

 

 

aura.patch

Link to comment
Share on other sites

  • 2 weeks later...

  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

@Yahiko, is attached file from codebox above?

 

 

So theres no way disabling it, but /effect. Some players liked to see skill effect on woes like land protect and stuff. Anyways, thank you very much!

if you use code form this post, just add agit_flag and agit2_flag exception like works for SC_HIDING, chasewalk and cloaking

 

Index: status.c
===================================================================
--- status.c    (revision 17181)
+++ status.c    (working copy)
@@ -7210,6 +7210,7 @@
     vd = status_get_viewdata(bl);
     calc_flag = StatusChangeFlagTable[type];
     if(!(flag&4)) //&4 - Do not parse val settings when loading SCs
+    {
     switch(type)
     {
         case SC_DECREASEAGI:
@@ -8653,6 +8654,15 @@
                 return 0;
             }
     }
+    // @aura
+    if (sd && sd->status.aura > 0 &&
+            (type == SC_HIDING || type == SC_CLOAKING || type == SC_CHASEWALK || agit_flag || agit2_flag))
+       {
+            sd->status.aura *= -1;
+            clif_clearunit_area(&sd->bl, 0);
+            clif_getareachar_char(&sd->bl, 0);
+       }
+    }
     else //Special considerations when loading SC data.
     switch( type )
     {
@@ -9781,6 +9791,14 @@
         opt_flag = 0;
     }
 
+    // @auras
+       if (sd && sd->status.aura < 0 &&
+               (type == SC_HIDING || type == SC_CLOAKING || type == SC_CHASEWALK || agit_flag || agit2_flag))
+       {
+               sd->status.aura *= -1;
+               clif_sendauras(sd, AREA_WOS);
+       }
+
     if (calc_flag&SCB_DYE)
     {    //Restore DYE color
         if (vd && !vd->cloth_color && sce->val4)

PS: Not tested yet

Edited by Cydh
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  13
  • Reputation:   7
  • Joined:  12/05/11
  • Last Seen:  

I will post here later the last mod I did about aura system, using a /db/aura_db.txt to create your own auras without editing source.

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   7
  • Joined:  10/08/12
  • Last Seen:  

@Zephyrus...WOW!!! now that's something many people wish to see for a long time...

CAnt Wait xD!!!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  39
  • Topics Per Day:  0.01
  • Content Count:  175
  • Reputation:   7
  • Joined:  09/13/12
  • Last Seen:  

can some 1 tell me what does this @aura do?

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

makes @specialeffect becomes permanent (additional) aura (beside of official lvl aura) for your char.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  39
  • Topics Per Day:  0.01
  • Content Count:  175
  • Reputation:   7
  • Joined:  09/13/12
  • Last Seen:  

makes @specialeffect becomes permanent (additional) aura (beside of official lvl aura) for your char.

 

]so does the extra aura have any effect in woe ,pvp etc? do we get extra stats or sm thing?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  295
  • Reputation:   6
  • Joined:  10/14/12
  • Last Seen:  

Theres no effect nor additional buffs but the ability to see your character glow and so as the others.

Overall it's an awesome mod to have.

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

so does the extra aura have any effect in woe ,pvp etc? do we get extra stats or sm thing?

no, it's only visual effect.

But, I'm going to make aura with additional effect for specified aura number. :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   2
  • Joined:  03/16/13
  • Last Seen:  

this work at eathena?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  436
  • Reputation:   31
  • Joined:  02/19/12
  • Last Seen:  

this work at eathena?

 

Yes.

Edited by Rebel
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   7
  • Joined:  10/08/12
  • Last Seen:  

I will post here later the last mod I did about aura system, using a /db/aura_db.txt to create your own auras without editing source.

any news dude?

Edited by miczster
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  295
  • Reputation:   6
  • Joined:  10/14/12
  • Last Seen:  

Theres a bug on this thing. You can spam this kn woe and you wont get killed. I have not trried cydh's mod preventing the use of these, other than that, needs to be disable the ise of this command in woe

Or a delay on using it please. Like 3 secs delay kn selectjng another aura

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
Reply to this topic...

×   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...