ruflux Posted September 24, 2012 Posted September 24, 2012 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; },{},{} Quote
Petey Pablo Posted September 24, 2012 Posted September 24, 2012 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] Quote
Emistry Posted September 24, 2012 Posted September 24, 2012 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; },{},{} Quote
ruflux Posted September 26, 2012 Author Posted September 26, 2012 (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 September 26, 2012 by ruflux Quote
Emistry Posted September 26, 2012 Posted September 26, 2012 { 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..... 1 Quote
GmOcean Posted September 26, 2012 Posted September 26, 2012 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. 1 Quote
ruflux Posted September 27, 2012 Author Posted September 27, 2012 Thanks for your help guys. I already have resolved the issue. thanks! Quote
Question
ruflux
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.