Jump to content

GodKnows Jhomz

Members
  • Posts

    333
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by GodKnows Jhomz

  1. 5 hours ago, Marihna said:

    Hello!!

    I was able to finally figure out how to delete the GM suit from my GM accounts, but as soon as I deleted <admin> </admin> the color for the name went away too..... Can someone help me with this? 

     

    As a side note, I also forgot how to change the GM access level.. If someone could help me with that, that would be fantastic. Thank you :3 <3

    Diff your client with "Remove GM Sprites" using nemo : image.thumb.png.fffff90d0bbb2e692a57d66217e29cdf.png
    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.

  2. 5 hours ago, Zelek said:

    Hello, does anybody know how can I edit the text in the client? For example, RO Re:Start replaced the Doram menu into an image. What I want to do in mine is to replace it maybe with a text of my server's information or rules and regulations, my question is, how exactly do I do it?

    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.

  3. 2 hours ago, tathanngudong said:

    Sorry...How i can add new quest with NPC??

    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 )

    • Love 1
  4. 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#
    #

     


     

    • MVP 1
  5. 4 hours ago, dekspyware said:

    Hi guys. I want to make @ii2 In-game Item Descriptions commands showing Link item on dispbottom but it not working i also try <ITEM>

    itemlink.jpg.645d13b95b4e89ef5f1eff77c8ac6082.jpg

    here script i used

    
    //===== rAthena Script =======================================
    //= In-game Item Descriptions Script
    //===== By: ==================================================
    //= Nova http://www.novaragnarok.com
    //============================================================
    
    -	script	itemdescs	-1,{
    end;
    
    OnInit:
    	bindatcmd "ii2",strnpcinfo(3)+"::OnAtcommand";
    	bindatcmd "itemdesc",strnpcinfo(3)+"::OnAtcommand";
    	end;
    	
    OnAtcommand:
      dispbottom "^3355FF[ Item Description Search ]^000000";
      .@item = atoi(.@atcmd_parameters$[0]);
      dispbottom "<itemdesc>"+getitemname(.@item)+"<INFO>"+.@item+"</INFO></itemdesc>";
      dispbottom "Click on the name of the item above.";
      end;
    
    }

    I think the commands showing item link on chat and npc is different.

    anyone know the correct commands ? 

    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.

  6. On 8/27/2017 at 5:47 AM, renewal said:

    I have this error when i execute the Map-Server

    I use last revision of rAthena.

     

     

    Sem título.png

     

    On 8/28/2017 at 1:33 AM, Sindit said:

    The same here, apparently this error occurs on Windows 10.

    When I already migrated to W10 has started this error, and even fixing the error by installing the DLL doesn't fixed yet. I "fixed" this by running the emulator on CentOS in a Virtual Machine.

    Btw, the error that occurs now:

    UaD8hTN.png

    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.

    • Love 1
  7. 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:

    screenrAthena020.thumb.jpg.597a74d73d3c9a0fee1854b339781d0a.jpgscreenrAthena023.thumb.jpg.dc01eb132a2b877abebbfa62d3b9c7ca.jpgscreenrAthena024.thumb.jpg.3c919837c1465adaae4efbb6658f0016.jpgscreenrAthena029.thumb.jpg.97b005d368bd571498ab49bfb0439493.jpgscreenrAthena030.thumb.jpg.4735ccba6491966b7eda58a2f9bb755b.jpg

    Note: After claiming the title reward in achievement window, you need to reconnect to add it in your equipment tab. ;)

    • Upvote 1
  8. 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;
    //=========================================

  9. 3 hours ago, RagnarLothbrok said:

    Hi do anyone know free vps provider or any sites where I can test run my server? I just need to make a dry run before I purchase official vps provider. Thanks!  

    There is no such Free VPS. Try some cheap vps. You can search some cheap vps in google.

  10. 15 hours ago, Ai4rei said:
    
    F:FF770C8BCFFF7708E843C21500
    R:906A008BCF906A00E843C21500
     >^^^^^^    ^^^^^^          <

    This is instead of the last one. It should remove the selection frames from both humans and doram.

    If that works out, you can just put the select frame on the window background ( 유저인터페이스\make_character\bg_create_character.bmp / À¯ÀúÀÎÅÍÆäÀ̽º\make_character\bg_create_character.bmp ) so that it looks as if there was a selection.

    Works Perfectly! <3 Thank you so much @Ai4rei. Thank you very much for the effort to make patch for this request. <3

  11. 4 hours ago, Ai4rei said:

    Edit: Another patch:

    
    F:FF928C0000008B7DEC8345F00481C79100000043897DEC81FF420100000F8C5BFFFFFF
    R:FF928C0000008B7DEC8345F00481C79100000043897DEC81FF42010000909090909090
     >                                                          ^^^^^^^^^^^^<

    Gonna try this one.
    Edit: This one works to disable clicking in doram area. But when I click in human area, the client crashes.

    4 hours ago, Ai4rei said:

    It's step by step as I cannot run the client myself.

    Its okay, just take your time.

    4 hours ago, Ai4rei said:

    That said, can you tell me what happens, when you click on the advertisement on iRO? That might allow me to pin-point the last piece of the patch.

    In iRO, when you click the advertisement nothing happens. The selection of character is still in the human section.

  12. Anyone knows what is the use of the encircled in the image?
    Rodex.PNG.2d168da3d0cea7628bbc8a03689d024e.PNG
    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.

  13. 47 minutes ago, Quesooo said:

    my toy factory instance some of the item is missing like bloody coin it gives only apple named unknown item

     

    help me to get this please

    Update your iteminfo.lua/.lub to get the latest item name and sprite.

    • Upvote 1
  14. 1 hour ago, Ai4rei said:
    
    F:0F8C96FAFFFF8B8D38FFFFFF41898D38FFFFFFB87A10000083F9020F8C3DFAFFFF8B4DF4
    R:0F8C96FAFFFF8B8D38FFFFFF41898D38FFFFFFB87A10000083F9029090909090908B4DF4
     >                                                      ^^^^^^^^^^^^      <

    In addition to the previous.

    It works again, the doram sprite removed. But still can select the area. Btw Thanks for the effort making this patches.

    598732af8523f_CharDoramCreation.png.c9a92aeefc7fa724076290029919a0f6.png

  15. 1 minute ago, Ai4rei said:
    
    F:C78524FFFFFF00000000C78528FFFFFF00000000C7852CFFFFFF000000006A01684C6399006A0C6A006A0068CA0B0000
    R:C78524FFFFFF00000000C78528FFFFFF00000000C7852CFFFFFF00000000E9CB01000090906A0C6A006A0068CA0B0000
     >                                                            ^^^^^^^^^^^^^^                      <
    

    Since you did not specify a client, this patch might not work for yours (this is for 2017-05-17RE). The visuals need editing of bg_create_character.bmp and maybe one or two more patches.

    Woh, thanks for this. Sorry if I didn't mention my client date. Btw its 2015-11-04aRagexe. Is there a patch for the said client? or only for 2017 client and above?

×
×
  • Create New...