Jump to content

Secrets

Developer
  • Posts

    587
  • Joined

  • Days Won

    44

Everything posted by Secrets

  1. Looks simple and clean. The start button needs to be emphasized imo.
  2. View File Free cash/Kafra points item binding Information This source mod makes everything bought with Kafra Points (Free Cash) becomes bound to the character. Use Case Give #KAFRAPOINTS instead of #CASHPOINTS in events to utilize this source mod to prevent distribution of the reward. By buying this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script. Terms above may be changed or adjusted without prior notification. Copyright © - Secrets 2017 - All Rights Reserved Submitter Secrets Submitted 06/12/2017 Category Source Modifications Video Content Author Secrets  
  3. Version 1.1.0

    159 downloads

    Information This source mod makes everything bought with Kafra Points (Free Cash) becomes bound to the character. Use Case Give #KAFRAPOINTS instead of #CASHPOINTS in events to utilize this source mod to prevent distribution of the reward. By downloading this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script. Terms above may be changed or adjusted without prior notification. Copyright © - Secrets 2017 - All Rights Reserved
    Free
  4. x--; equals to set x,x-1; a += b; equals to set a,a+b;
  5. Even if your host ignore DMCA takedowns, it doesn't mean your content are all legal.
  6. Suggestion: VC++ build tools installer can be executed in silent mode from the command line. You could make a batch file to make a 1-click install script!
  7. Your script spawns the bags for other towns when a bag is killed, so it's normal that they stack. You need to improve the respawn code.
  8. Field monsters' name are determined by their spawn script in the /npc/ folder.
  9. Batch files required for running the server will be copied from the tools folder after you have successfully compiled rAthena.
  10. Should be OnClock0345: if(gettime(DT_DAYOFMONTH)==14) { { // dosomething }
  11. First, this script is vulnerable to SQL injection. Second, add a check if each owner of the target item is online or not. If they are online, use `delitem2`. Otherwise, query for deletion directly.
  12. Secrets

    Clan System

    https://github.com/rathena/rathena/commit/73eb96f35889268d14c3fa2d8d2dc01615d00928
  13. Secrets

    Favorite BGM?

    Al de Baran, Payon, The map above Geffen, Gonryun, El Dicastes, Eclage
  14. Currently the common project supports adding C++ source files. Though a C facade is required for it to be used in other C source files.
  15. 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
  16. I used Trello to communicate with my team when I was running a server. It's like a virtual whiteboard.
  17. FYI kRO reverted their Prontera to old version due to performance issues.
  18. As of Git Hash: 4a004ad, we have added several checks on C++ compiler on your system so that the transition to C++ phase go smoothly. What does this mean to you? You have to install g++ on your system if you don't have it installed on your system. To do so, you can run the following command CentOS sudo yum install gcc-c++ Debian/Ubuntu sudo apt-get install g++ For OSX you can use your clang/llvm toolchain to compile rAthena. After that, make sure you have GCC version 5 or higher by using command below. gcc --version
  19. packet_db_ver: 55 packet_keys_use: 55
  20. --- 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;
  21. Another cheap alternative for larger servers: Google Cloud Storage Nearline I used to back up my files to this when I was doing stuffs in the Minecraft scene.
  22. Download latest version at https://github.com/secretdataz/rA-Script-Release/blob/master/mvp_ladder.txt
×
×
  • Create New...