Jump to content

Dastgir

Script Developers
  • Content Count

    3803
  • Joined

  • Last visited

  • Days Won

    249

Everything posted by Dastgir

  1. Too many patches :x I suggest to just use "Select Recommended" and try, if it doesn't crash, then choose patches one by one and try, so you would exactly get to know which patch is making your client crash. (I suspect Restore Model Culling)
  2. I don't think it might be possible (correct me if I am wrong) The client requests name when you hover to any npc/char/monster, and server sends the name. so unless someone creates a new client to support saving of npc names or something like that , then its possible
  3. Script should be case sensitive http://upaste.me/0276b0 The script is having many old methods,( i have just edited case to make map-server not throw warning)
  4. Independent project, I am not working with Adelays, neither have worked with them before
  5. 1) you are using not too old version, add src to second parameter 2) you are using not too new Hercules either, remove the last false.
  6. They should be in hercules/src/plugins/ not in hercules/plugins
  7. Seems like afk.c doesn't exist in plugins folder
  8. Its your webhosting problem, they might be blocking outgoing connections to the ports of your map/char/login server, thus its always showing offline, you can request your webhost to enable outgoing connections to ports 5121,6121,6900 (or other ports, if you have changed the default one's)
  9. Updated and added, but have not tested it yet. Fixed the bug , thanks for reporting
  10. then you might have it installed on source and not by plugin
  11. just remove it from conf/plugins.conf
  12. Dastgir

    0.0.0.0 IP

    src/config/core.h #define AUTOTRADE_PERSISTENCY comment it and compile, and autotraders won't bother you.. for PhpMyAdmin, i don't know how you installed it, but if you have installed it normally, starting httpd is enough chkconfig httpd on ^ Above command will start httpd as vps boots
  13. If its shown as *****, probably your client side manner is acting, and *** shown means client censored the words and ACTUALLY Sended those asterisks to the server, so this plugin won't be able to do anything when the server haven't received the correct word
  14. Dastgir

    0.0.0.0 IP

    Yes, autotraders appear as 0.0.0.0, since they are not actual players(so we cannot get their ip)
  15. Hello Community, Once Again, I was doing something and found something unusual, the kRO have other methods of loading Items too.... They also load some idnum tables but with different names Unidentified items goes to eventnum2itemdisplaynametable.txt , eventnum2itemdesctable.txt , eventnum2itemresnametable.txt Identified items: eventidnum2itemdisplaynametable.txt , eventidnum2itemdesctable.txt , eventidnum2itemresnametable.txt (Just add event prefix to all file names ) Points to Remember: This file is loaded before itemInfo, so if you have same item in itemInfo, resname and displayname will be overwritten with one on itemInfo, while both Description will appear one below one. It Works, and I have tested. These Files go inside GRF(data folder) as idnum tables used to..(before) Works on All clients with itemInfo.lub support How it Looks When Overwritten:
  16. Mechanic might release on next maintenance (19 Jan)
  17. Almost to initial stage of completion... Would be coding server side(Web) and starting beta test soon...
  18. I don't know why you are switching armors then o_O well, technically you are unequipping current armor and equipping new armor, so the stats are recalculated 2 times , thus making hp drop
  19. AFAIK, theres 4 script provided with Kami Package, you should load those too, they have setlook2 function
  20. Seems like you have modified some function declarations, so you might need to regenerate the HPMHook, see tools/HPMHookGen Folder
  21. Hello Community, Yesterday, I was trying to make Quest Appear on other TAB's and result was successful. Prerequisite: You need latest ROClientside Repository : https://github.com/ROClientSide/Translation/ https://github.com/ROClientSide/Translation/commit/9d93ef1 (This Commit is necessary) you need Client >= 2014-10-22 (Haven't Tested with old clients, You can test and tell if it works ) Here's a Guide: questluafilelist.lub: You need 2 files, local_XYZquest_list and l_XYZ_list and in the folders as mentioned below: Add Following lines to questluafilelist.lub(at end of file) without EXTENSIONS as mentioned below: Add[[localquest\local_dastgirquest_list]] Add[[localquest\questinfo\l_dastgir_list]] local_dastgirquest_list.lub(Sample Files, Modify to your needs): LOCAL_DastgirQuest_List = { { name = [[Dastgir Custom Quests]], imagefile = [[ep_test_sample.bmp]], list = { { name = [[Novice]], list = { { name =[[Test1]], scrfilename = [[DastgirQuest]], questID = 1019, }, { name =[[Test2]], scrfilename = [[DastgirQuest]], questID = 1017, } } }, { name = [[Quests 11~25]], list = { { name =[[11-15]], scrfilename = [[DastgirQuest]], questID = 1017, }, { name =[[16-20]], scrfilename = [[DastgirQuest]], questID = 1019, }, } } } } } _G.QuestTable.add(LOCAL_DastgirQuest_List, "EVENT") It needs Following line at the bottom for compulsary _G.QuestTable.add(LOCAL_XYZQuest_List, "TAB") where TAB's are EVENT LOCAL EP NEW RECOMMENDED Replace LOCAL_XYZQuest_List with Table name at top of this file... l_dastgir_list.lub(Sample File, Modify to your needs): DastgirQuest_List = { [1019] = { NPCFromName = [[Dastgir]], NPCFromMap = [[new_1-1]], NPCFromSpr = [[4_M_01]], NPCFromX = 63, NPCFromY = 53, NPCToName = [[Dastgir]], NPCToMap = [[prontera]], NPCToSpr = [[4_M_01]], NPCToX = 86, NPCToY = 84, Item = [[]], PrizeItem = [[]], Title = [[Event QuestInfo ]], Info = [[Testing the Event.]], QuickInfo = [[QuickInfo.]], Hunt1 = [[]], Hunt2 = [[]], Hunt3 = [[]], Time = [[0]], LV = [[0]], }, [1017] = { NPCFromName = [[Dastgir-1]], NPCFromMap = [[prontera]], NPCFromSpr = [[4_BRICKPILE]], NPCFromX = 84, NPCFromY = 123, NPCToName = [[Dastgir-2]], NPCToMap = [[payon]], NPCToSpr = [[4_BOARD3]], NPCToX = 76, NPCToY = 114, Item = [[]], PrizeItem = [[]], Title = [[Event QuestInfo ]], Info = [[Testing the Event.]], QuickInfo = [[QuickInfo.]], Hunt1 = [[Alarm]], Hunt2 = [[]], Hunt3 = [[]], Time = [[0]], LV = [[0]], }, } _G.QuestTable.addList("DastgirQuest",DastgirQuest_List) In this file too, you need Following line in the end _G.QuestTable.addList("XYZQuest",XYZQuest_List) where XYZQuest_List is table_name(mentioned in first line of this file), (Please see the quotes) and that's it. put it into your GRF, and it will work NOTE: Many Functions are modified, so you would need quest_function.lub provided in the repository ScreenShot: Please Don't Remove credits in the quest_function file...
  22. Map is not available means map-server is down probably show what error is there on map/char-server console, so we can help better.
  23. So you just use storm gust and it crashed?
  24. Yes, also its in jRO and not kRO
×
×
  • Create New...

Important Information

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