Jump to content

AinsLord

Members
  • Posts

    794
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by AinsLord

  1. Im planning to host my Ragnarok in OVH any feedback on OVH service? if you can recommend other VPS to host for Ragnarok server Thank you! I dont know if this is the right area to post this
  2. i dont understand can you explain this image? but i think this still refers to MAX WEIGHT as 20000 is the DEFAULT MAX WEIGHT what im looking or asking for is the initial weight or default weight not the default max weight thanks
  3. Is there any way to increase the default weight per character in the new rA git - Jobs: Lord_Knight: true High_Priest: true High_Wizard: true Whitesmith: true Sniper: true Assassin_Cross: true Lord_Knight2: true Paladin: true Champion: true Professor: true Stalker: true Creator: true Clown: true Gypsy: true Paladin2: true Gunslinger: true Ninja: true Star_Gladiator: true Star_Gladiator2: true Soul_Linker: true MaxBaseLevel: 255 MaxWeight: 50000 //This is just to increase the MAX weight of the character not the DEFAULT weight anyone can help thanks adding itemscript to add weight just add max weight also same goes with gym pass
  4. 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
  5. for pre renewal still 2018 clients
  6. Seems not working on the latest rA git? anyone tested this to latest rA git?
  7. yep it is i downloaded the kRO on this forum then patch it using the rsu inside the kRO folder
  8. anyone tested this to the latest rAthena Git?
  9. how can i fix this client issues? 20240619 client ver. thanks
  10. check map error on console btw did you use this on the latest rathena git?
  11. care to share please thank you
  12. what you mean format? do you have a correct format of those files?
  13. 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
  14. what is this line for? -->> fd = sd->fd; ->> WFIFOHEAD(fd,packet_len(0x12d));
  15. thank you will try this
  16. is this a fix or anything please tell
  17. What mob ID is best to start with the latest rAthena Git @w0wZukuBg thanks
  18. 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
  19. 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
  20. How can I make this instance 2x a week or 3x a week? thank you!
  21. 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;
  22. warnings regarding clif.cpp conversion from 'size_t' to 'int16' when use the skill cant move but can do @go @warp commands
  23. 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!
×
×
  • Create New...