Jump to content

AinsLord

Members
  • Posts

    758
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by AinsLord

  1. check map error on console btw did you use this on the latest rathena git?
  2. what you mean format? do you have a correct format of those files?
  3. as the images shown above those are the errors i get after running the client im using @llchrisll translation this is a 20240619 client i dont know what seems to be the problem thanks in advance
  4. what is this line for? -->> fd = sd->fd; ->> WFIFOHEAD(fd,packet_len(0x12d));
  5. is this a fix or anything please tell
  6. What mob ID is best to start with the latest rAthena Git @w0wZukuBg thanks
  7. Is it ok to use the Renewal ItemInfo.lub to Pre-Re server as I want to implement some items from Renewal to Pre-re Thank in Advance
  8. Check this line .@level_mode = select( "[ Level 50+ ] Normal", "[ Level 100+ ] Veteran", "[ Level 150+ ] Nightmare", "[ Level 200+ ] Hell", "[ Level 240+ ] ^ff0000Torment^000000" ); $ENDLESSMODE[getcharid(1)] = .@level_mode; set .@required_level, 0; if (.@level_mode == 1) { .@required_level = 50; } else if (.@level_mode == 2) { .@required_level = 100; } else if (.@level_mode == 3) { .@required_level = 150; } else if (.@level_mode == 4) { .@required_level = 200; } else if (.@level_mode == 5) { .@required_level = 255; } // Change this to your server max level if (!instance_check_party(getcharid(1), .@online_members_count, .@required_level, 255)) { // Change this to your server max level
  9. upon inserting new tables you should have these 4 storage and NPC works fine with me in your inter_server.yml dont change the 1st line of storage should always like this Header: Type: INTER_SERVER_DB Version: 1 Body: - ID: 0 // Done change this Name: "Storage" // Done change this Table: storage // Done change this - ID: 1 Name: "VIP" Table: storage2 max: 300 - ID: 2 Name: "VIP2" Table: storage3 max: 300 - ID: 3 Name: "VIP3" Table: storage4 max: 300 Footer: Imports: - Path: conf/import/inter_server.yml If you want more storage for VIP etc just add same line shown below - ID: 4 Name: "VIP4" Table: storage5 max: 300 as for the DB insert table show be like this shown below -- -- Table structure for table `storage` -- CREATE TABLE IF NOT EXISTS `storage5` ( `id` int(11) unsigned NOT NULL auto_increment, `account_id` int(11) unsigned NOT NULL default '0', `nameid` int(10) unsigned NOT NULL default '0', `amount` smallint(11) unsigned NOT NULL default '0', `equip` int(11) unsigned NOT NULL default '0', `identify` smallint(6) unsigned NOT NULL default '0', `refine` tinyint(3) unsigned NOT NULL default '0', `attribute` tinyint(4) unsigned NOT NULL default '0', `card0` int(10) unsigned NOT NULL default '0', `card1` int(10) unsigned NOT NULL default '0', `card2` int(10) unsigned NOT NULL default '0', `card3` int(10) unsigned NOT NULL default '0', `option_id0` smallint(5) NOT NULL default '0', `option_val0` smallint(5) NOT NULL default '0', `option_parm0` tinyint(3) NOT NULL default '0', `option_id1` smallint(5) NOT NULL default '0', `option_val1` smallint(5) NOT NULL default '0', `option_parm1` tinyint(3) NOT NULL default '0', `option_id2` smallint(5) NOT NULL default '0', `option_val2` smallint(5) NOT NULL default '0', `option_parm2` tinyint(3) NOT NULL default '0', `option_id3` smallint(5) NOT NULL default '0', `option_val3` smallint(5) NOT NULL default '0', `option_parm3` tinyint(3) NOT NULL default '0', `option_id4` smallint(5) NOT NULL default '0', `option_val4` smallint(5) NOT NULL default '0', `option_parm4` tinyint(3) NOT NULL default '0', `expire_time` int(11) unsigned NOT NULL default '0', `bound` tinyint(3) unsigned NOT NULL default '0', `unique_id` bigint(20) unsigned NOT NULL default '0', `enchantgrade` tinyint unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `account_id` (`account_id`) ) ENGINE=MyISAM;
  10. warnings regarding clif.cpp conversion from 'size_t' to 'int16' when use the skill cant move but can do @go @warp commands
  11. I tried this again got this warning how can i fix this NOTE: Fixed just change this like in unit.cpp bool k_tick_check(struct map_session_data *sd, t_tick k_tick_t, int k_tick_c, int kdelay_n, int kdelay_w) to this bool k_tick_check(class map_session_data *sd, t_tick k_tick_t, int k_tick_c, int kdelay_n, int kdelay_w) THANK YOU!
  12. is this working on 20220406 clients? and on latest rAthena git? EDIT: i applied the patch however got this error how to fix this @ckx_ @gamingmagic thank you EDIT: Fixed the error but still like this Client Ver: 20220406 bandicam 2024-12-13 19-12-42-482.mp4
  13. Thanks, so many features can in integrated from renewal to pre-re using latest clients but I notice some skills animations are different from 2018 to latest clients specially sonic blow seems no hitting action.
  14. The Client proceeds but i have this window error opened every time I open the client how can I get rid of this window EDIT: now when i select character it shows all of the items are "X" how can i fix this im using 20220406 client Thank you for your help
  15. thanks guys for your answers, from a long time of being busy i'll try to create a server again where can i download clients again still in nemo site?
  16. how about for renewal what client is stable?
  17. As the title says, still the 2018 client for pre-re or is there any client now that is much stable than the 2018 for renewal what is the most stable client? Thank you!
  18. thank you man what i did is after pulling the latest git update i manually copied the item_group_db.yml from git to my files and it works fine
  19. I just recently pulled the latest update in rathena and got this kind of errors. has anyone have this kind of errors too updating to latest git pull rathena TIA
  20. @Forshaken try this method 1.7.0 diff should fix ur problem try to get fresh src files then manually add those lines in diff file
  21. as the title says is there anyone have card deposit system like the one ragnarok mobile has it will give bonuses when the card has been deposited? if paid just DM me how much it is thanks
×
×
  • Create New...