Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/10/23 in Posts

  1. Wouldn't recommend buying it. Owner seems to give no support and project looks dead. Wouldn't risk buying it.
    2 points
  2. conf/battle/guild.conf // Is changing the guild leader allowed during WoE? // Default: no guild_leaderchange_woe: no In /src/map/clif.cpp search for void clif_parse_GuildBreak(int fd, struct map_session_data *sd) void clif_parse_GuildBreak(int fd, struct map_session_data *sd) { if( map_getmapflag(sd->bl.m, MF_GUILDLOCK) ) { //Guild locked. clif_displaymessage(fd, msg_txt(sd,228)); return; } guild_break(sd,RFIFOCP(fd,packet_db[RFIFOW(fd,0)].pos[0])); } Change to void clif_parse_GuildBreak(int fd, struct map_session_data *sd) { if( map_getmapflag(sd->bl.m, MF_GUILDLOCK) ) { //Guild locked. clif_displaymessage(fd, msg_txt(sd,228)); return; } if (agit_flag || agit2_flag) { clif_displaymessage(fd, "You can't break guild during WoE."); return; } guild_break(sd,RFIFOCP(fd,packet_db[RFIFOW(fd,0)].pos[0])); }
    1 point
  3. - script atcmd_example -1,{ OnInit: bindatcmd "reset",strnpcinfo(3) + "::OnAtcommand"; end; OnAtcommand: query_sql("DELETE FROM `char_reg_num` WHERE `key` LIKE 'Mission%'"); query_sql("DELETE FROM `acc_reg_num` WHERE `key` LIKE 'Mission%'"); .quest_count = getvariableofnpc(.Quests, "Hunting Missions"); addrid(0); #Mission_Count = 0; #Mission_Delay = 0; #Mission_Total = 0; @hm_char_del_check = 0; for (.@i = 0; .@i < .quest_count; .@i++) { setd "Mission" + .@i, 0; setd "Mission" + .@i+"_", 0; } dispbottom "A GM has forced reset your Hunting mission status."; end; }
    1 point
  4. View File FluxCP Theme:[FREE] [RESPONSIVE] Hurt Free Theme 2nd FluxCP Responsive Theme base on Bulma.io This fluxCP only compatible with rAthena FluxCP = https://github.com/rathena/FluxCP DEMO LINK HERE >>> CLICK HERE <<< [ WHEN VISITING THE LINK PLEASE CHANGE THE THEME TO = hurtFreeV2 = FOR THIS THEME ] you can login the page using this:- admin:- username = test password = test normal user:- username = test password = test Come with Easy config ./themes/hurtFreeV2/config/hurtsky_settings.php 'yourServerName' => 'Hurtsky', //this name maybe will be use on top and footer 'newsTitleLimit' => 10, //this will limit character/letter in title of RSS 'newsContentLimit' => 100, //this will limit character/letter in content of RSS 'enableSocialNetworkLink' => true, //disable this will remove the get connected section 'enableFacebookIcon' => true, 'facebookLink' => 'https://hurtsky.com/fluxcp', 'enableDiscordIcon' => true, 'discordInviteLink' => 'https://hurtsky.com/fluxcp', 'enableTwitterIcon' => true, 'twitterLink' => 'https://hurtsky.com/fluxcp', 'footerCopyrightTrademarkLable' => 'All trademarks referenced herein are the properties of their respective owners', 'footerCopyrightInitialDate' => 2017, How to install: 1. place the folder under ./theme/ 2. open file ./config/application.php 3. change 'ThemeName' => array('default','bootstrap'), to 'ThemeName' => array('hurtFreeV2'), 4. for WOE status, you need to import this SQL file to database = woe_status.sql 5. also add this NPC script to your emulator = woe_status.txt 6. done THIS FREE THEME PROVIDED AS IT NO SUPPORT COME WITH IT USE IT AT YOUR OWN RISK Submitter Hurtsky Submitted 09/03/2018 Category Fully Coded Themes Video Content Author hurtsky  
    1 point
  5. There's either nothing in their storage or you're using multiple storage tables. FluxCP only supports the first default `storage` table.
    1 point
×
×
  • Create New...