Jump to content

Strand

Members
  • Posts

    102
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    asdasd

Recent Profile Visitors

2314 profile views

Strand's Achievements

Poring

Poring (1/15)

2

Reputation

  1. 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; }
  2. 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?
  3. 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;
  4. 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!
  5. 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!
  6. Hello LearningRO! Not currently using latest rAthena. Do you know of another method? Regards!
  7. 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!
  8. Hello @AnnieRuru How do I manage to keep blocking skill but unblock attacks? Where exactly can I edit it?
  9. 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?
  10. 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?
  11. Hello community! Does anyone have a fully functional @arealoot command? I'm using rAthena from 2015. Thank you guys!!
  12. Hello guys, I'm stuck at this error: Any idea how to fix it?
  13. @KeyMaster I already activated it but it is not working still.
  14. 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!
  15. Hello community, How do I manage notices, RSSFEED? RSS Feed is not displaying!
×
×
  • Create New...