Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/29/17 in all areas

  1. < Stolao's Daily Login Reward > Features: Full Customization Can Set Number of Hours Between Login Prizes and Losing Consecutive Prizes make Days Weeks or even Months Can Item, Point, Exp or even Buff Rewards Includes Whisper for checking status of and collecting next rewards Includes @Command for checking status of and collecting next rewards next rewards Includes Dynamic Buff Rewards Added Cutin Support Todo: Suggestions? Optimize? Changelog: 2.00 Origional Make 2.01 Fixed Logic Bug 2.02 Fixed Year Multiplier 2.03 Added an IP check 2.04 Split Rewards up 2.05 Move ip check to Daily reward collection 2.06 Added ability to see next day via commands/relogging 2.07 Added Delay 2.08 Moved Delay to none VIP only 2.09 Removed some useless lines 2.0A Removed Menus due to bugs 2.0B Fixed VIP Cutin 2.0C Added it showing previos day cutin 2.0D Added a for loop 2.0E Fixed Ramined logged in time calculation (visual bug) 2.0F Added a F_InsertPlural to "more minute" 2.10 Added a Mac Check 2.11 Changed the IP check to [Sader1992] version 2.12 Enable Bound Type 2.13 Added 'collectreward', 'dailyreward', 'collectdaily' Commands 2.14 Added 'nextreward' Command 2.15 Added Daily Buffs 2.16 Added Exp Rewards 2.17 Removed Reards for Autotraders 2.18 Move Buffs to Daily so VIP wont trigger twice 2.19 Optimized Slightly 2.1A Fixed a bug with VIP getting bonus rewards in normal rewards 2.1B Fixed some documentaion Links: Latest Short Video on how it works
    1 point
  2. Donation NPC 1.0 inspired in this http://rathena.org/b...coupon-npc-111/ and http://rathena.org/b...ional-code-npc/ so i make my own script. it is Also Credited to tr0n. How to Use it To GM or Admin - Talk the NPC and You can Add the Validation Code and the Code will be generate and it will save in the SQL. To Player - Talk to NPC and Get your Donation Code by inputing the Verification Code you Will get the Donation code and Input the Donation Code to get your Item or Cash Point Files DonationNPC_1.0.txt Change Logs Features Can Select Cash Point or Item Friendly to Use Save in the SQL Generated Code Future Plan Suggestion Report for the Server Ingame Bug report Can View all the Claimed Code Can View all the UnClaimed Code More Secured for Anti Hack Note: if have bug post here suggestion post here
    1 point
  3. Description: A collection of events I made 6 years ago (2011) on my server. I was using eAthena server files when I made these scripts. I'm not sure if it's compatible with rAthena's server files. Some servers are still using some of these scripts and I think they're using new emulators like rAthena or Hercules. I just want to share these scripts to everyone. I don't know anything about programming when I made these scripts so the code is quite ugly. I did not even use functions lol. Players on my server really enjoyed Stop the Clock and Guess the Word event. I can't answer any questions regarding these scripts. I can't even remember the codes I've written here. Download: babbs-event-scripts.rar prize-giver-sql-script.rar Events: Stop the Clock event Guess the Word event Run for your Life event Monster Hunt event - The last boss in Monster Hunt is a custom mob. Change it into whatever you want to avoid errors. True or False event Lucky Box Event Poring Punch event Poring Catcher event Racing event MVP event Last Man Standing event (pvp) Free for All event (pvp) Soccer Ball event Treasure Box event NPC: Prize Giver npc - Download the sql script in the link above. Load and execute it on your database (phpMyAdmin / MySQL Workbench). It will create a table used by the Prize Giver npc. It won't work without this table. Event Manager npc Event Warper npc Time Play npc Bubble Gum npc (copied the bubble gum quest in VanRO) Note: The prize of some events, especially the automated events, is a custom item. Change it into whatever you want to avoid errors.
    1 point
  4. Everyone is capable or searching for older commits themselves via the Git repo. Since you're being lazy i've done the search for you. This commit equates to r17310 in the old SVN timeline. https://github.com/rathena/rathena/tree/87d862c4232a8e8f1c3d57975dccf4432dea5d4b
    1 point
  5. This can be discussed again when we have to redesign it for pet evolution.
    1 point
  6. There are some things in the script that can lead to a failure. Take my advice and remove everything connected with the array .register_aid. Just use getmapusers() whenever a player dies or disconnects. And you should check in OnPCLogoutEvent if the player is on the last_man_standing map since this event can be triggered by everyone on the server.
    1 point
  7. try putting the patcher under a subdomain i had a similar issue when ussing ssl cert on my site patcher would not work. but on a subdomain it would work. for example patch.yoursite.com and have .htaccess block indexing and you should be okay.
    1 point
  8. that's why you can't run RO. Sorry i can't help you, try to google at warpportal forum or at irowiki for solution for your problem, because here i can do nothing.
    1 point
  9. if you want to try this thing out edit your clif.c., add something like this next to else statement under ZC_ACCEPT_ENTER code block. #elif PACKETVER == 20161228 const int cmd = 0x2eb;
    1 point
  10. It's better to post those, to avoid another useless instructions. Because there is no guide around, then I'll give a lil bit instructions how to make those client works. Because you're using RagexeRE client follow this steps: 1. Open src\char\char_clif.c , go to line 307 then change this #if false && PACKETVER >= 20151001 to this #if true && PACKETVER >= 20151001 2. Open src\common\utils.c , go to line 409 then change this else if(date >= 20151104) return 55; to this: else if(date < 20160203) return 55; else if(date >= 20160203) return 56; 3. Open src\map\clif.h , go to line 39 then change MAX_PACKET_VER to 56 4. Clean compile
    1 point
×
×
  • Create New...