Jump to content

AinsLord

Members
  • Posts

    791
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by AinsLord

  1. Still having this error using latest rA git I already addred the map here in import/castle_db.yml Body: - Id: 100 Map: job3_arch01 Name: Emperium Test Room ClientId: 26 still having that error anyone can help thanks
  2. for pre renewal still 2018 clients
  3. Seems not working on the latest rA git? anyone tested this to latest rA git?
  4. yep it is i downloaded the kRO on this forum then patch it using the rsu inside the kRO folder
  5. anyone tested this to the latest rAthena Git?
  6. how can i fix this client issues? 20240619 client ver. thanks
  7. check map error on console btw did you use this on the latest rathena git?
  8. what you mean format? do you have a correct format of those files?
  9. 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
  10. what is this line for? -->> fd = sd->fd; ->> WFIFOHEAD(fd,packet_len(0x12d));
  11. is this a fix or anything please tell
  12. What mob ID is best to start with the latest rAthena Git @w0wZukuBg thanks
  13. 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
  14. 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
  15. 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;
  16. warnings regarding clif.cpp conversion from 'size_t' to 'int16' when use the skill cant move but can do @go @warp commands
  17. 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!
  18. 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
  19. 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.
  20. 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
×
×
  • Create New...