-
Posts
102 -
Joined
-
Last visited
Profile Information
-
Gender
Male
-
Location
asdasd
Recent Profile Visitors
2662 profile views
Strand's Achievements

Poring (1/15)
2
Reputation
-
Good day! I'm creating one of my events (Floating Rates) to occur two times a day at random times. I've been thinking about using OnClock or OnMinute but I can't figure out exactly how. Does anyone could help me? //===== rAthena Script ======================================= //= Floating Server Rates //===== By: ================================================== //= Lupus //===== Current Version: ===================================== //= 1.0 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= It's a simply example of setbattleflag //= This script will change your server rates from 1x to 1.5x every 6 hours //= Note: It doesn't affect Card granted drops, MVP & Treasure Chests drops ^_- //= It also doesn't affect CARD drops, because they are just 0.01% //===== Additional Comments: ================================= //= You can make incredible scripts with 'setbattleflag'! //============================================================ - script FloatingRates -1,{ OnInit: //add any other HOURS OnHour00: OnHour06: OnHour12: OnHour18: //------------------- set $@brate,rand(100,150); set $@jrate,rand(100,150); set $@drate,rand(100,150); //Base exp setbattleflag("base_exp_rate",$@brate); //Job exp setbattleflag("job_exp_rate",$@jrate); //Drops setbattleflag("item_rate_common",$@drate); setbattleflag("item_rate_heal",$@drate); setbattleflag("item_rate_use",$@drate); setbattleflag("item_rate_equip",$@drate,true); // Apply new rates to configs set above //we don't change card drops rate, because these values won't change them anyway announce "Current rates are: 1."+($@brate-100)+"x 1."+($@jrate-100)+"x 1."+($@drate-100)+"x",bc_all,0xFF6060; end; }
-
Hello guys! If I want the damage taken to be based on the DEF of Crusader, not the person who gets hit. (Crusader - Devotion skill) Where and what should I look for?
-
Hello guys, I have a question in regards to AC_DOUBLE skill description formula in relation to the source code in battle.cpp. Sadly I can't relate one to the other since I'm not understanding the source. Can someone kindly interpret it to me? Where is the (75+5*SkillLV)% formula showing on the source? Specially the 75. case AC_SHOWER: case MA_SHOWER: #ifdef RENEWAL skillratio += 50 + 10 * skill_lv; #else skillratio += -25 + 5 * skill_lv; #endif break;
-
Hello guys! I have an issue on my test server where the armor enchants get duplicated on cart inventory when I have an armor enchanted on my character inventory, right after I relog. 1. First, I create the item on my inventory. 2. Second, I create another 2 Silk Robes slotted without enchant. 3. Third, I put them in my cart inventory. 4. Four, I relog my character. 5. Five, I open cart inventory and then, all the Silk Robes have the same enchants as the one I have on my character inventory. Any idea where should I look at to fix this issue? ? Thank you!
-
Hello guys! Just as the title says: the TaeKwon Ranking List (/taekwon command) does not get updated by obtaining points through missions, only after restarting the server. Where can I start looking at? Using client 2015-11-04. Thanks in advance!
-
Catching a player and blocking your movement and skills .
Strand replied to Tales's question in Scripting Support
Hello LearningRO! Not currently using latest rAthena. Do you know of another method? Regards! -
Hello community! I'm wondering if it is possible to allow the usage of skills and physical attacks when using setoption OPTION_XMAS,1; while using Santa Custome. Where exactly do I need to modify to enable the use? Also with wedding dress or tuxedo. Thanks!
-
Catching a player and blocking your movement and skills .
Strand replied to Tales's question in Scripting Support
Hello @AnnieRuru How do I manage to keep blocking skill but unblock attacks? Where exactly can I edit it? -
Hello community, The thing is, I'm having issues when trying to get fury explosion on Super Novice even though when I meet all requirements. I'm using 2015-11-04 and 2015-10-29 clients and still not working. It shows the message as if it were detected, but nothing happens. this is src code: /// Request to invoke the effect of super novice's guardian angel prayer (CZ_CHOPOKGI). /// 01ed /// Note: This packet is caused by 7 lines of any text, followed by /// the prayer and an another line of any text. The prayer is /// defined by lines 790~793 in data\msgstringtable.txt /// "Dear angel, can you hear my voice?" /// "I am" (space separated player name) "Super Novice~" /// "Help me out~ Please~ T_T" void clif_parse_NoviceExplosionSpirits(int fd, struct map_session_data *sd) { if( (sd->class_&MAPID_UPPERMASK) == MAPID_SUPER_NOVICE ) { unsigned int next = pc_nextbaseexp(sd); if( next ) { int percent = (int)( ( (float)sd->status.base_exp/(float)next )*1000. ); if( percent && ( percent%100 ) == 0 ) {// 10.0%, 20.0%, ..., 90.0% sc_start(&sd->bl,&sd->bl, status_skill2sc(MO_EXPLOSIONSPIRITS), 100, 17, skill_get_time(MO_EXPLOSIONSPIRITS, 5)); //Lv17-> +50 critical (noted by Poki) [Skotlex] clif_skill_nodamage(&sd->bl, &sd->bl, MO_EXPLOSIONSPIRITS, 5, 1); // prayer always shows successful Lv5 cast and disregards noskill restrictions } } } } Any idea why would this happen?
-
[Error]: Unknown packet 0x1e84 from map server, disconnecting.
Strand posted a question in Source Support
Hello community! As the title says, this error triggers when I attempt to leave a party using "/leave" command. I need to perform three times "/leave" to actually disolve the party, and right then, that error shows up on the console: It also says "Map-server #0 has disconnected" but it really doesn't. I can still be ingame. It may take around 15 - 20 seconds to disolve the party after executing /leave, and then, the error message shows up. Any ideas? -
Hello community! Does anyone have a fully functional @arealoot command? I'm using rAthena from 2015. Thank you guys!!
-
-
@KeyMaster I already activated it but it is not working still.
-
Hello community, I already implemented this Thor Patcher but I can't make the RSS Feed to properly work. It just shows everything in blank. MAy you have idea what could be causing the problem? Thank you a lot!
-
Hello community, How do I manage notices, RSSFEED? RSS Feed is not displaying!