Jump to content

GodKnows Jhomz

Members
  • Posts

    333
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by GodKnows Jhomz

  1. Open "src/common/mmo.h" and find : #define MAX_INVENTORY 100 ///Maximum items in player inventory Edit the value to what you want. I don't know what is the maximum value that we can use there so don't make it too high. Here's a sample after applying maximum 200 MAX_INVENTORY. (Don't forget to recompile your server.)
  2. Diff your client with "Remove GM Sprites" using nemo : So you don't need to remove the <admin></admin> or <aid></aid> in your clientinfo. Just add the account id that you want to add in yellow name. This patch removed the GM Suit and the Yellow Name stays there with its functions. Hope it helps.
  3. You need to edit the badge_new.bmp and make it color "#FF00FF" to make it transparent.
  4. You must edit the main background of the character making window. And replace the blank space of removed doram and add texts/images there. The file can be located at : data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\make_character\bg_create_character.bmp Hope that helps you.
  5. Just add another line in both quest_db and questid2display then add additional mob and item id then add the setquest and erasequest. Sample: add in db/import/quest_db.txt 100008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" add in data/questid2display.txt 100008#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Poring and bring Jellopy 50 EA together with 50,000 Zeny# # In Line 39 edit : //Change the total number (7) .@mob = rand(1,8); In Line 45 replace from: else {.@mob$ = "Anolian"; mhmid = 7003; setquest 100007;} //Anolian Skin to : else if(.@mob == 7){.@mob$ = "Anolian"; mhmid = 7003; setquest 100007;} //Anolian Skin then add after : else if(.@mob == 8){.@mob$ = "Poring"; mhmid = 909; setquest 100008;} //Jellopy After that, if you want to add more rewards, go to the rewards section. //Change the total number (11) find : .@r = rand(1,12); after : if(.@r == 11){.@reward = 5579; .@rewardamt = 1;} //Wanderer's Sakkat add : if(.@r == 12){.@reward = 5035; .@rewardamt = 1;} //Poring Hat Then erase the quest after getting rewards. after: if(checkquest(100007) == 1){ erasequest 100007; } add : if(checkquest(100008) == 1){ erasequest 100008; } And its done. ( Sorry if the code is so messy XD )
  6. View File pRO Monster Hunter Mission This is a complete custom made copy of Ragnarok Online Philippines' Monster Hunter Mission Quest Event for the month of September. Sorry if the script is so messy since I'm still a newbie in Scripting. The info of this quest is you need to bring the following quest items that requested by Master Hunter npc. You can check the event details here : https://www.ragnarokonline.com.ph/news/monster-hunt-sep2017 You can check your quest in Quest Tab (Alt+U) if you want to check what item are you going to bring to Master Hunter and where you can get it. Important Note: You need to add this in your db/import/quest_db.txt in your trunk and data/questid2display.txt in your grf. db/import/quest_db.txt (In trunk) 100001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" data/questid2display.txt (In GRF) 100001#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Orc Warrior and bring Orcish Voucher 50 EA together with 50,000 Zeny# # 100002#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Hode and bring Earthworm Peeling 50 EA together with 50,000 Zeny# # 100003#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Sohee and bring Black Hair 50 EA together with 50,000 Zeny# # 100004#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Bigfoot and bring Bear's Footskin 50 EA together with 50,000 Zeny# # 100005#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Raydric and bring Brigan 50 EA together with 50,000 Zeny# # 100006#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Pasana and bring Broken Sword 50 EA together with 50,000 Zeny# # 100007#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Anolian and bring Anolian Skin 50 EA together with 50,000 Zeny# # Submitter GodKnows Jhomz Submitted 09/07/2017 Category Games, Events, Quests Video Content Author GodKnows Jhomz  
  7. Version 1.0.0

    394 downloads

    This is a complete custom made copy of Ragnarok Online Philippines' Monster Hunter Mission Quest Event for the month of September. Sorry if the script is so messy since I'm still a newbie in Scripting. The info of this quest is you need to bring the following quest items that requested by Master Hunter npc. You can check the event details here : https://www.ragnarokonline.com.ph/news/monster-hunt-sep2017 You can check your quest in Quest Tab (Alt+U) if you want to check what item are you going to bring to Master Hunter and where you can get it. Important Note: You need to add this in your db/import/quest_db.txt in your trunk and data/questid2display.txt in your grf. db/import/quest_db.txt (In trunk) 100001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" 100007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Hunter Mission" data/questid2display.txt (In GRF) 100001#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Orc Warrior and bring Orcish Voucher 50 EA together with 50,000 Zeny# # 100002#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Hode and bring Earthworm Peeling 50 EA together with 50,000 Zeny# # 100003#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Sohee and bring Black Hair 50 EA together with 50,000 Zeny# # 100004#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Bigfoot and bring Bear's Footskin 50 EA together with 50,000 Zeny# # 100005#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Raydric and bring Brigan 50 EA together with 50,000 Zeny# # 100006#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Pasana and bring Broken Sword 50 EA together with 50,000 Zeny# # 100007#Monster Hunter Mission#SG_FEEL#QUE_NOIMAGE# Kill Anolian and bring Anolian Skin 50 EA together with 50,000 Zeny# #
    Free
  8. I think this is what you're looking for : But I'm not sure if it works on latest git.
  9. I think the dispbottom command is for static texts only. It didn't read any other text options like changing its color, or like the one your tried to link an item like in the npc mes command. So better to use npc mes command than dispbottom for @ii2 custom command.
  10. vcruntime140.rar Try to use this one. This is the one I'm using in my offline server. Extract the dll file in the root folder of your rathena git. Hope it helps you both. Edit: I'm using Windows 7 (64bit OS) Not sure if it works for Windows 10.
  11. You must remove them from data/luafiles514/lua files/signboardlist.lubnot in system/towninfo.lub Hope it helps you.
  12. Just add your title id in "data/luafiles514/lua files/datainfo/titletable.lub", then after that add your custom achievement. Then set the reward title "TitleID: YourCustomTitleID". I just did some examples here: Note: After claiming the title reward in achievement window, you need to reconnect to add it in your equipment tab.
  13. You need to add items and prices in the array: //========================================= setarray .buy_id[0],1228,itemid1,itemid2,itemid3,itemid4; setarray .buy_co[0],40,price1,price2,price3,price4; //=========================================
  14. You can use this code before or after giving the quest reward(s): message strcharinfo(0),"Quest Complete!"; or if you're using latest git you can also use this : showscript "Quest Complete!";
  15. There is no such Free VPS. Try some cheap vps. You can search some cheap vps in google.
  16. Need mo mag recompile once mag edit ka inside src folder.
  17. Works Perfectly! <3 Thank you so much @Ai4rei. Thank you very much for the effort to make patch for this request. <3
  18. Gonna try this one. Edit: This one works to disable clicking in doram area. But when I click in human area, the client crashes. Its okay, just take your time. In iRO, when you click the advertisement nothing happens. The selection of character is still in the human section.
  19. Anyone knows what is the use of the encircled in the image? I have unread and already read mail and it stores in the 1st Mailbox. Can anyone please explain me the use of that other mailbox which is in gray scale. Cause when you delete a mail, it will be deleted permanently so I think its not like a trash mailbox. Thanks in advance.
  20. Update your data.grf or download the latest kRO.
  21. Update your iteminfo.lua/.lub to get the latest item name and sprite.
  22. It works again, the doram sprite removed. But still can select the area. Btw Thanks for the effort making this patches.
  23. It works. But the thing is I can still click(select) the doram character area.
×
×
  • Create New...