Jump to content
  • 0

Box of thunder max speed


ruflux

Question


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  09/09/12
  • Last Seen:  

can anyone help me make "box of thunder's" effect to be MAX MOVE SPEED?

Box_Of_Thunder,Box of Thunder,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp1,20000,0; },{},{}

Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  152
  • Topics Per Day:  0.03
  • Content Count:  569
  • Reputation:   11
  • Joined:  11/24/11
  • Last Seen:  

try this

Box_Of_Thunder,Box of Thunder,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp2,20000,0; },{},{}[/font][/color][color=#282828][font=helvetica, arial, sans-serif]
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

hmm ?

is this exist in official rA SVN ? didnt found...

sc_start SC_SpeedUp2,20000,0;

the current usable item that able to give you highest bonus speed is this

12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp1,5000,0; },{},{}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  09/09/12
  • Last Seen:  

hmm ?

is this exist in official rA SVN ? didnt found...

sc_start SC_SpeedUp2,20000,0;

the current usable item that able to give you highest bonus speed is this

12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp1,5000,0; },{},{}

But what I want to do is to make it faster. I would like to use my box of thunder as if you are on @speed1. If I compare my speed potions or box of thunders to other Ragnarok servers it's too slow and I don't know where to fix it. I hope you can help me with this. Do I have to edit something from another folder? Edited by ruflux
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

{ atcommand "@speed 1"; sleep2 300000; atcommand "@speed 150"; },{},{}

change @speed 150 to your server default speed rate...

but still not recommand for this...@speed will override your other bonus movement speed.....

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  666
  • Reputation:   93
  • Joined:  04/27/12
  • Last Seen:  

That's because, the SC_SpeedUp0 & SC_SpeedUp1 are hard coded in the src itself. Inshort, you'd either need to create a new speed, SC_SpeedUp2 OR edit one of the originals. I suggest making a new one since, editing existing ones would change existing items. But since your trying to change an item already just change this in: rAthena/src/map/status.c

  if( sc->data[sC_SPEEDUP0] ) // temporary item-based speedup
val = max( val, 25 );

TO

  if( sc->data[sC_SPEEDUP0] ) // temporary item-based speedup
val = max( val, 75 );

Or anything higher than 50. Since 50=Speed Potion speed, so 100= 2x Speed Potion speed.

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  09/09/12
  • Last Seen:  

Thanks for your help guys. I already have resolved the issue. thanks!

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