Jump to content

Dastgir

Script Developers
  • Content Count

    3803
  • Joined

  • Last visited

  • Days Won

    248

Everything posted by Dastgir

  1. Or just get their idnum tables if using old files, or get their itemInfo if they using newer clients.
  2. But I suppose , to add it with confirmation to official effects, (since I believe some of rA stuff is not following kRO) and what about mob_db.txt?
  3. I see that Item DB and Mob DB is missing alot of entries (Its almost 100-200+ according to my guess), Also I haven't seen any updates for itemdb/mobdb for much time. So any track when new entries will be implemented? Or any open source info to hercules community , so hercules community can help by pull requests?
  4. for me, iRO is making money by VIP, as jezu said.IRO though, follows kRO update after months, like recently iRO introduced navigation system. Formula is not 100% same, its little different but most of them are same ( or rather close to KRO)
  5. Usually some mistakes we do, so please be careful that, When cleaning and building (compiling the server) make sure you dont have server running, My only guess to this now may be, some of your custom mod is doing this or either map is updated while char/login is not. I dont think any other reason should be there, but if this does not solve, lets wait for Ind to look upon it.
  6. Pc.h #define MAX_PC_BONUS 10Change 10 to more high value and recompile. The problem was because 1 char was having more than 10 bonuses of bSkillAtk.(maybe from item bonuses)
  7. Wooh, seeing the error first time. But as it says recompile from scratch. I.e if using vs, right click solution and click rebuild the solution. Thats it. Or maybe in your source src/map is updated and src/char(or login) is not updated. Anyways, I cant find that message in hercules repo (or if someone found it, just tell). What's your emulator?
  8. http://ratemyserver.net/index.php?page=download_tool Download unbollox from there, second last on list.
  9. Well its easy to make, but few thing want to discuss about it.1) whats the use of it, because when npc is going to be reloaded , it will just bring the stock back(neither can store stock data in memory, as it will be cleared when server restart/reload), also cannot use sql since npc ids can differ when reload. So if you want it like stock full when reload, ofcourse I can do it, just message here. Or stock system can also be done via simple script, you can use scripts to make stock too.
  10. Dastgir

    Banker

    Some Mistakes: Line 37(Also on line 65) if (@banknotedeposit =< 0) { // Checks if the player enters a number less than or equal to 0 Should be if (@banknotedeposit <= 0) { // Checks if the player enters a number less than or equal to 0 Line 92(same with line 128): mes "Please input the amount of zeny to exchange for "+ getitiemname(.note_id) +"s,"; Should be mes "Please input the amount of zeny to exchange for "+ getitemname(.note_id) +"s,"; Line 142: Zeny =+ @priceb; // Gives player zeny Should be Zeny += @priceb; // Gives player zeny and finally line 172: prontera,150,150,3 duplicate(Banker) Banker#prt 4_m_khkyel Should be(its case sensitive, so capital) prontera,150,150,3 duplicate(Banker) Banker#prt 4_M_KHKYEL This all were map-server errors, haven't tested ingame.
  11. CREATE TABLE IF NOT EXISTS `gd_pk_title` ( `char_id` int(11) unsigned NOT NULL, `var` int(11) unsigned NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8; Thats the sql.
  12. Open hex Editor, Open your Client.exe, Find iteminfo.lub and change it to whatever name you want(restriction: Length should be <= 12)
  13. 1 & 3 -> I'll need to see if its possible. 2 -> this one is not possible (well to be exact its a pain to even think about it. so I am not going to pursue it ) Hmm i think its high time that i publish how to make patches in script. In the meantime you can expect two other patches (1 of them courtesy of Yommy) coming in today Ohh Thanks, Will wait for it.
  14. @Neo if possible, can you make it like , 1) for seeing char name, a packet is received, and that packet will contain color code, so the char name can be colored. 2) increase charname size limit (current its 24) 3) same as first, but instead charname color, itemname color can be changed. Would these patches be possiblr?
  15. Dastgir

    Patcher

    Wiki have all the answers: http://herc.ws/wiki/Thor_Patcher
  16. Dastgir

    Patcher

    Any Patcher can be used be any client. All Patchers are Good: 1)Thor Patcher: Widely Used, (I believe it have best compression, and I am using it for years) , easily customizable. Resumable not supported. 2)NeonCube: (No Comments, Ah, I don't know what to say here) 3)JikariCube: (I believe that is has resumable support), and same function as others. But Personally, Thor Patcher is best.
  17. OnPCJobLvUpEvent:if ( JobLevel == 10 ){ //Pop Up if level 10mes "Pop up";close;}else if( JobLevel == 50) { //Pop up if level 50mes "You reached Job.Level 50";close;}end;
  18. Ind reply to pull request (https://github.com/HerculesWS/Hercules/pull/232) Hello. We thank you for your wish to contribute and support, however such a feature has already been prepared in 438aec4 (its just waiting for the remainder of the branch to be complete) (438aec4) @Moderators, You can close this thread. Download Link(if anyone want to use it): http://herc.ws/board/topic/638-special-shop/
  19. Updated to v1.2 now can use itemshop and pointshop option.
  20. @Jezu: It already works, (sevenzz meant to tell that if I can make this shop work with cashshop interface instead of normal shop interface) This is new source, and doesn't give error(well I tested it personally many times), It cannot be pulled to repo(Since Hercules is already working in something like this), so I will just make a patch of this in download section. Thanks.
  21. Well, I use bash and till yesterday it was working fine, but now, I can push my local changes of old branches but when I create new branch, then push it to repo, it just ask user and pass, thrn it stuck there, waited 1 hour, then also no change. Git processes seems to be running in background(in task manager it shows git applications), reinstalled git too. Set buffer size very high too, even tried to use ssh link, still no luck. Any help?
  22. Then your custom theme has to be checked, it may be executin wrong sql query/ or something like that. If its paid one, ask ur coder to help, else upload it here, I hope someone will help you.
×
×
  • Create New...

Important Information

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