Jump to content
  • 0

Box of thunder max speed


Question

Posted

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

6 answers to this question

Recommended Posts

Posted

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

Posted (edited)

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
Posted

{ 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
Posted

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...