Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/20/20 in all areas

  1. 1 Table in char is missing ! Try delete your ragnarok db and create a new one use the latest main.sql & log.sql from sql folder inside rAthena server files . Connect your database and rAthena server using inter_athena.conf
    1 point
  2. Sorry for the lack of updates but I wanted to get a lot more work done before showing off more. Glad I did too since some juicy stuff got added this week and well....ill let the pics speak for themselves. Keep in mind that this is a work in progress and things can change. The entire base for the systems is complete. T.Stats, T.Sub-Stats, T.Stat Points, AP system, the effects from the T.Sub-Stats, framework for the 4th jobs, and other important things is pretty much complete and stable. Also I did a few special debug commands to show off some skill animations since I don't have any skills coded yet. There's a little over 200 new skills that needs to be coded in. Finally, this has turned into a full project and more info about whats going to happen with it will be announced soon.
    1 point
  3. Hey, whats up!? Here is your request: // Author: _Okuz_ // Version: 1.0.2 - 20:40 14/10/2016 - script Weekend Floating Exp -1,{ OnInit: // Setup the rates you want to double here... setarray .server_conf$[0], "base_exp_rate", getbattleflag("base_exp_rate"), "job_exp_rate", getbattleflag("job_exp_rate"), "item_rate_common", getbattleflag("item_rate_common"), "item_rate_heal", getbattleflag("item_rate_heal"), "item_rate_use", getbattleflag("item_rate_use"), "item_rate_equip", getbattleflag("item_rate_equip"), "item_rate_card", getbattleflag("item_rate_card"), "item_rate_mvp", getbattleflag("item_rate_mvp"), "item_rate_adddrop", getbattleflag("item_rate_adddrop"), "item_rate_treasure", getbattleflag("item_rate_treasure"); // To force the event to run even if you have to shutdown your server for some reason... if (gettime(4) != 5 && gettime(4) != 6 && gettime(4) != 0) end; OnFri0000: // start double rates on Friday 00:00 if (!.active) callsub(S_changeRates, 2); end; OnMon0000: // stop double rates on Monday 00:00 callsub(S_changeRates, 1); end; // Arg(0): mult S_changeRates: set .@size, getarraysize(.server_conf$); for (set .@i, 0; .@i < .@size; set .@i, .@i + 2) { setbattleflag .server_conf$[.@i], atoi(.server_conf$[.@i + 1]) * getarg(0); } set .active, !.active; atcommand "@reloadmobdb"; announce "[Event] : Rates " + (.active ? "increased" : "restored") + "!",bc_all,0xFF6060; return; } EDIT-- Tested and working.
    1 point
  4. oh forgot here it is --> http://www.mediafire.com/?vqmqujvf223bo7z
    1 point
×
×
  • Create New...