Jump to content

Secrets

Developer
  • Posts

    587
  • Joined

  • Days Won

    44

Community Answers

  1. Secrets's post in PreRE Sharp Shoot snaping to nearest 45 degree angle was marked as the answer   
    Read Playtester's comment here again. The comment literally explained how the skill "snaps" to the 45 degree angle. Did you read it?
  2. Secrets's post in How to remove MVP red square was marked as the answer   
    https://github.com/rathena/rathena/commit/d87ac219862dcacc7c5ade32e752cd401a6ea5d5#diff-b04bf9ab3157df0df1761adf09efe299R151
  3. Secrets's post in [issue] Rent Item not countitem in script was marked as the answer   
    https://github.com/rathena/rathena/pull/5080
  4. Secrets's post in Disable Thanatos Effect on Certain skills was marked as the answer   
    You can modify the is_attack_piercing function in battle.cpp
  5. Secrets's post in [Error]Source | secret/costume was marked as the answer   
    I updated the pull on my repository as a gesture since many people are still interested in it.
    Have fun
    PS. I have no intention of supporting any of this. You are still on your own.
  6. Secrets's post in How do I add a custom castle for WoE? was marked as the answer   
    You have to set up a castle for the map guild_base in /db/castle_db.txt
  7. Secrets's post in #CASHPOINTS changes cause freeze was marked as the answer   
    Check if any of your MySQL table was crashed and repair them
  8. Secrets's post in tortoise svn checkout was marked as the answer   
    Disclaimer: This comment is opinionated.
    If you wish to use subversion with github (and why the hell would you do it anyways. it's 2018), you can check out GitHub's guide.
    The correct way to solve the problem mentioned in OP is to clone a "shallow clone" with Git. Which you can find how to in Google.
    Here's the link: https://linuxhint.com/git-shallow-clone-and-clone-depth/
    And please spend some effort if people provide you a hint.
    This topic is now locked.
  9. Secrets's post in VIP Ticket was marked as the answer   
    vip_time(60*24); dispbottom "VIP time extended for 24 hours.";  
  10. Secrets's post in MVP - HP Regen when non-engaged was marked as the answer   
    Make it cast full heal when idle in mob_skill_db
     
  11. Secrets's post in How convert txt to sql was marked as the answer   
    Just download a perl runtime or w/e it is then execute the file. You don’t have to know Perl to use the tool. For Windows install StrawberryPerl or ActivePerl.
  12. Secrets's post in NPC timer unaffected by server reset was marked as the answer   
    Pseudocode, but I think you can get what I want to show here
    - script secret -1,{ OnFoo:   $evt_tick = gettimetick(2);   addtimer "somenpc::someevent",.delay_tick;   end; OnInit:   .delay_tick = youreventdelay;   .@difftick = gettimetick(2) - $evt_tick;   if(.@difftick < 0) {     // timer still not elapsed     addtimer "somenpc::someevent",.@difftick;   } else {     donpcevent "somenpc::someevent";   }  
  13. Secrets's post in can you help me rathina was marked as the answer   
    Try applying the "Enforce Official Login Background" patch on Nemo
  14. Secrets's post in [Clan] Guild & Clan simultaneous was marked as the answer   
    Now implemented in my NEMO fork.
    https://github.com/secretdataz/NEMO/commit/5481c7a793b52778d80783740a105f769c627e00
    Special thanks to @Functor.
     
  15. Secrets's post in Sorcerer's Elemental Buffed up was marked as the answer   
    Edit the elemental_create function in elemental.cpp
  16. Secrets's post in pet evolution menu? was marked as the answer   
    Soon™

  17. Secrets's post in REQ Chat System Link Item was marked as the answer   
    It also works in 2015-10-29 onwards. Try ctrl+clicking or shift+clicking at the item while the chat box is active.
  18. Secrets's post in (SOLVED) Bio MVP slave not dead even after the MVP Dead? Is this bug? How to fix this? was marked as the answer   
    Slaves summoned from NPC_SUMMONMONSTER (not NPC_SUMMONSLAVE) won't be despawned after their master is killed.
    This is intended behavior.
  19. Secrets's post in How to make script warp guild in certain time? (SOLVED) was marked as the answer   
    Move the OnSun label to the first line because .@GID_HM need to be set everytime the script runs.
  20. Secrets's post in Auto kil map when start was marked as the answer   
    You ran out of ram.
  21. Secrets's post in Monster Name on field ??? was marked as the answer   
    Field monsters' name are determined by their spawn script in the /npc/ folder.
  22. Secrets's post in Clan System was marked as the answer   
    https://github.com/rathena/rathena/commit/73eb96f35889268d14c3fa2d8d2dc01615d00928
  23. Secrets's post in Help Hexadecimal Def was marked as the answer   
    A digit of hexadecimal can hold a value up to 15 (0xF) so you just add them up like this
    0x10 + 0x40 = 0x50
    0x50 + 0x80 = 0x(13)0 = 0xD0
  24. Secrets's post in Bug Tracking Software? (CLOSED - Got Answer) was marked as the answer   
    I used Trello to communicate with my team when I was running a server. It's like a virtual whiteboard.
  25. Secrets's post in Dark Strike Skill Bonus vs Holy Property or Angel Race was marked as the answer   
    --- C:\Users\Jittapan\AppData\Local\Temp\TOdqXa_battle.c 2017-05-07 17:35:33.883000000 +0700 +++ D:\GitRepo\rAthena\src\map\battle.c 2017-05-07 17:35:36.840000000 +0700 @@ -5764,6 +5764,10 @@ if (battle_check_undead(tstatus->race,tstatus->def_ele)) skillratio += 5 * skill_lv; break; + case NPC_DARKSTRIKE: + if (tstatus->race == RC_ANGEL || tstatus->def_ele == ELE_HOLY) + skillratio += 5 * skill_lv; + break; case MG_FIREWALL: skillratio -= 50; break;  
×
×
  • Create New...