ruflux Posted September 24, 2012 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 9 Reputation: 0 Joined: 09/09/12 Last Seen: March 30, 2013 Share 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 Link to comment Share on other sites More sharing options...
Petey Pablo Posted September 24, 2012 Group: Members Topic Count: 152 Topics Per Day: 0.03 Content Count: 569 Reputation: 11 Joined: 11/24/11 Last Seen: March 7, 2022 Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted September 24, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share 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 Link to comment Share on other sites More sharing options...
ruflux Posted September 26, 2012 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 9 Reputation: 0 Joined: 09/09/12 Last Seen: March 30, 2013 Author Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted September 26, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share 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 Link to comment Share on other sites More sharing options...
GmOcean Posted September 26, 2012 Group: Members Topic Count: 31 Topics Per Day: 0.01 Content Count: 666 Reputation: 93 Joined: 04/27/12 Last Seen: August 17, 2015 Share 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 Link to comment Share on other sites More sharing options...
ruflux Posted September 27, 2012 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 9 Reputation: 0 Joined: 09/09/12 Last Seen: March 30, 2013 Author Share Posted September 27, 2012 Thanks for your help guys. I already have resolved the issue. thanks! Quote Link to comment Share on other sites More sharing options...
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; },{},{}
Link to comment
Share on other sites
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.