Jump to content

Start_

Donators
  • Posts

    833
  • Joined

  • Last visited

  • Days Won

    9

Community Answers

  1. Start_'s post in moc_fild10 - early episode maps was marked as the answer   
    conf > maps_athena >> Uncomment moc_fild10
  2. Start_'s post in Error banner1.bmp - Cash Shop was marked as the answer   
    Have you export .bmp as 24 bit?
     
    And make sure you keep the size as same as official.
  3. Start_'s post in @guide was marked as the answer   
    - script GuideCommands -1,{ OnInit: bindatcmd "guide","GuideCommands::OnGuide"; end; OnGuide: dispbottom "Helpful"; end; }  
  4. Start_'s post in [SOLVED] Missing Item Sprites was marked as the answer   
    Many of items will be sprite missing.
    Try to use https://github.com/llchrisll/ClientSpriteCollection and put every country sprite together.
    If you know something is missing, You can also help him to correct missing sprites.
  5. Start_'s post in help ALT+E menu window too long was marked as the answer   
    data > msgstringtable.txt
    Find the wording and edit it.
  6. Start_'s post in Request Old ALT+E Style was marked as the answer   
    Yes you can change texture of it. (Try to use GRF Editor and find these buttons).
  7. Start_'s post in Cash Mount Speed was marked as the answer   
    \conf\battle\player.conf Line 180
  8. Start_'s post in [RESOLVED] Display image issue, basic refresh was marked as the answer   
    Go to Client folders >> System >> iteminfo
    Copy resourcesName from Archangel Wings to Costume Archangel Wings resourcesName.
  9. Start_'s post in how to Install Athena-Web-Server | Get error "Type 3" was marked as the answer   
    Edit IP on '\data\luafiles514\lua files\service_korea\ExternalSettings_kr.lub'

    AccountLinkedUserDataUrl = {
        Save = "http://127.0.0.1:8000/userconfig/save",
        Load = "http://127.0.0.1:8000/userconfig/load"
    }
    TwitterDataUrl = {
        Auth = "http://0.0.0.0:3000/twitter/user-auth",
        Upload = "http://0.0.0.0:3000/twitter/upload"
    }
    EmblemDataUrl = {
        Upload = "http://127.0.0.1:8000/emblem/upload",
        Download = "http://127.0.0.1:8000/emblem/download"
    }

    Change 127.0.0.1 to your ip address.
  10. Start_'s post in Increase Max Storage was marked as the answer   
    Hey I suggest you to use additional storage instead of increase max value.
    Because somehow I remember it crash when store high-amount of items.
    (Additional storage >> You can added many many special storage like VIP Storage 01, VIP Storage 02)
     
    conf > inter_server

    then add storage2 table on database too. (Duplicate from storage)
    then simple call
    openstorage2 1,STOR_MODE_GET|STOR_MODE_PUT;
  11. Start_'s post in Check player if have a guild was marked as the answer   
    if(getcharid(2) > 0){
    //char in guild.
    }
  12. Start_'s post in HELP! Error in script was marked as the answer   
    Change 4_F_KAFRA5 to other npc sprite id.
  13. Start_'s post in Portal where you can select where to go was marked as the answer   
    Try this.
    izlude,52,172,4 script West Warper 45,2,2{ end; OnTouch:  
  14. Start_'s post in Add skill GREED to all character was marked as the answer   
    Add on db > re > skill_tree (Every jobs)
  15. Start_'s post in Changing EXP System Message was marked as the answer   
    Client folders > data > msgstringtable.txt
    and find the word.
  16. Start_'s post in How to put broadcast on questboard? was marked as the answer   
    mes "Congratulation! Here is your Reward."; announce strcharinfo(0) + " Finish a quest",bc_all;  
  17. Start_'s post in About Item Script was marked as the answer   
    I think there are error in your scripts and try to use callfunc instead.
     
    1.) Somewhere in any npc files
    function script WakeFieldBox01,{ // +9 Crimson Dagger [2]     setarray [email protected][0],RDMOPT_WEAPON_ATTR_TELEKINESIS;     setarray [email protected][0],0;     setarray [email protected][0],0;     getitembound3 28705,1,1,9,0,0,0,0,0,BOUND_CHAR,[email protected],[email protected],[email protected]; return; } 2.) in item script: callfunc("WakeFieldBox01");
  18. Start_'s post in Visual 2019 was marked as the answer   
    Tick
    Desktop dev with C++
    Universal Window Platform dev
     
  19. Start_'s post in Request > Kafra Function Script was marked as the answer   
    Disable on D:\rathena\npc\kafras\functions_kafras.txt
    Line 123 just remove the menu name.
  20. Start_'s post in About Figure was marked as the answer   
    Change Class to BaseClass
  21. Start_'s post in about @rates (display message) was marked as the answer   
    Just change the wording inside src folder (Use find all >> 'rates', 'Normal Drop Rates', etc to find where it is).
  22. Start_'s post in Good morning, I would like to know where I change the icon that is next to the mvp? was marked as the answer   
    data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\montype_mvp.bmp
  23. Start_'s post in Where I edit the callfunc "F_GetPlatinumSkills" ? was marked as the answer   
    \npc\other\Global_Functions.txt
  24. Start_'s post in What code do I use to force the player to get off the mount by clicking on the NPC? was marked as the answer   
    setcart(0);
    setfalcon(0);
    setriding(0);
  25. Start_'s post in Client 20180620 crash when create a character was marked as the answer   
    Try this data too: https://github.com/Asheraf/Translation
×
×
  • Create New...

Important Information

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