Jump to content

Dastgir

Script Developers
  • Content Count

    3803
  • Joined

  • Last visited

  • Days Won

    248

Everything posted by Dastgir

  1. Some error at Battle quest which is due to core I guess, since monster command don't seem to spawn the monster at specific rectangle box (x,xs,y,ys are provided) Else all is working according to official.
  2. This plugin is no longer useful, since Its been already added to Hercules: https://github.com/HerculesWS/Hercules/commit/649e7b98a7ec4fbf3363597daad3d1c57383051f with much fixes.
  3. Its just for getting random monster id, Its not a ATCOMMAND, its a SCRIPT COMMAND, so you can't use @getrandmob, instead you have to use getrandmob() on script with following syntax: getrandmob(num,type); * * type: Where to fetch from: * 0: dead branch list * 1: poring list * 2: bloody branch list * num: Mob level to check against
  4. You can run the following command: YourClient.exe -Replay or make a bat file(if you want players to use it) inside your RO folder. @echo off cd /d "%~dp0" start YourClient.exe -Replay exit
  5. Edit System/itemInfo.lub 2012-04-10+ clients uses itemInfo.lub instead of idnum tables.
  6. There is HPMHookGen.pl Tool in folder, but it can't seems to be used through windows, I have perl installed, and don't know what else it needs, When i run the file, it just creates empty structure of some HPM files. Any help how to use it?
  7. Which server is this? iRO, kRO, etc? But nice, its available on steam too.
  8. Its 2 totally different things. you can check the comparison of Git and SVN https://git.wiki.kernel.org/index.php/GitSvnComparison Discussion: http://stackoverflow.com/questions/871/why-is-git-better-than-subversion
  9. @neqste We will check into the file. @ontopic. Updated to r63: Changelog of r62-r63 Formatted itemInfo.luaUpdates on itemInfo:1)298 Items were having wrong ClassNum.2)3 Items were having wrong slotCount.3)126 items were having wrong rescname. P.S: Still Missing 353 kRO Items(Will be added in few weeks(With Translation)) Updated to r64-r66: Changelog: Added 2k missing entries(entry with missing name,description).Fixed several(200+) more ClassNum and resname. P.S: Still 400+ items are missing description.
  10. Extract the attachment to different folder, add itemInfo.lub to that folder, then If you have lua installed, simply double click SeperateItemInfo.lua If you don't have lua installed,(I have included lua.exe in zip), so open command prompt, go to the folder where you extracted files and be sure that itemInfo.lub is already there, then type "lua SeperateItemInfo.lua", and done. The idnumtables are created in folder named "idnum" If you don't have itemInfo.lub but have itemInfo.lua , then just rename it to .lub. Attachment: SeperateItemInfo.7z (The File Works I have tested it, and its made by me) Thanks.
  11. No No, If you put the .c files in src/plugins and edited src/plugins/makefile.in and then do make plugins then .so file will be automatically created at /plugins folder. so just do the steps: 1) Copy .c files in src/plugins 2) Edit src/plugins/makefile.in (As stated above) 3) Do "make plugins" 4) Edit conf/plugins.conf 5) Run your server.(And plugins will be loaded)
  12. compile them, Put the .c files in /src/plugins/, Edit src/plugins/Makefile.in, Add plugin names here without .c extension MYPLUGINS = so if you have plugin file named autoloottype.c It will look like MYPLUGINS = autoloottype then do make plugins This step will make the .c file into .so file and store them in /plugins folder. and then include the file name in conf/plugins.conf and then run the server. That's all
  13. 1 question, of which file you are talking about, any source link? Maybe this is encrypted file, done by something, we can't tell exactly until we know the source.
  14. Better to share so that the developers can check any file they want without requesting many times, and other hercules people can also compare and make pull requests.if you are giving out file, then pm me with file or share here in post.
  15. If your using 2013 clients, you cannot right click monsters and npc, you can only right click players.
  16. Well the script should be compatible with hercules, Just check if there's any error(I don't think there will be any error if previously there was no error).
  17. 3rd time I am posting this(Updated 15th October, Will be missing 2-3 sql updates) CREATE TABLE `account_data` ( `account_id` int(11) unsigned NOT NULL DEFAULT '0', `bank_vault` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`account_id`)) ENGINE=MyISAM;ALTER TABLE `cart_inventory` DROP COLUMN `bound`;ALTER TABLE `char` DROP COLUMN `moves` , ADD COLUMN `slotchange` smallint(3) unsigned NOT NULL DEFAULT 0 , ADD COLUMN `char_opt` int(11) unsigned NOT NULL DEFAULT '0';ALTER TABLE `guild_storage` DROP COLUMN `bound`;ALTER TABLE `inventory` DROP COLUMN `bound`;ALTER TABLE `picklog` MODIFY COLUMN `type` enum('M','P','L','T','V','S','N','C','A','R','G','E','B','O','I','X','D','U') NOT NULL DEFAULT 'P';CREATE TABLE `sql_updates` ( `timestamp` int(11) unsigned NOT NULL, `ignored` enum('Yes','No') NOT NULL DEFAULT 'No', PRIMARY KEY (`timestamp`)) ENGINE=MyISAM;ALTER TABLE `storage` DROP COLUMN `bound`;DROP TABLE `cashlog`;DROP TABLE `skillcooldown`;-- Existent updates to enterINSERT INTO `sql_updates` (`timestamp`) VALUES (1360858500);INSERT INTO `sql_updates` (`timestamp`) VALUES (1360951560);INSERT INTO `sql_updates` (`timestamp`) VALUES (1362445531);INSERT INTO `sql_updates` (`timestamp`) VALUES (1362528000);INSERT INTO `sql_updates` (`timestamp`) VALUES (1362794218);INSERT INTO `sql_updates` (`timestamp`) VALUES (1364409316);INSERT INTO `sql_updates` (`timestamp`) VALUES (1366075474);INSERT INTO `sql_updates` (`timestamp`) VALUES (1366078541);INSERT INTO `sql_updates` (`timestamp`) VALUES (1381354728);INSERT INTO `sql_updates` (`timestamp`) VALUES (1381423003);REPLACE INTO `interreg` (`varname`, `value`) VALUES('unique_id', '0'); 1st Time: http://herc.ws/board/topic/2495-req-database-upgrades-from-rathena-to-hercules/?p=16526 2nd Time: http://herc.ws/board/topic/2619-moving-from-rathena-to-hercules/?hl=rathena @jaBote Can you please add one in git repo so they can directly get it from repo.
  18. https://github.com/HerculesWS/Hercules/pull/212 Ind has already made pull request, and will implement soon after review and test.
  19. Thanks , I just need to make sure. SlashGeeGee But according to official server I.e kro it was moved from 1863 to 1864.(atleast in 20130807, it is moved, I dont know exact date, when itwas moved.)So you can also change pc.c Find clif->msgtable_num(sd->fd, 0x746, e_tick + 1); // [%d] seconds left until you can use Change to clif->msgtable_num(sd->fd, 0x747, e_tick + 1); // [%d] seconds left until you can use Thats why if you see https://subversion.assembla.com/svn/client-side-translation/Data/ we have kept latest msgstring at data folder and older msgstring are seperated in msgstring folder.
  20. I have sended bunch of emails through contact page in march, still no reply, so I just switched from harmony...
  21. Which client you using? I am using the questid2display.txt, and got no error, no crash. Can you tell when you get error?
  22. +1, please implement ForceClientHashPacket diff for 2013 clients.
  23. I will update you on this.
  24. Can any moderator ban ErevyLiex from wiki? It seems to edit page with lots of spam messages? Thanks.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.