Jump to content

Start_

Members
  • Posts

    928
  • Joined

  • Last visited

  • Days Won

    14

Community Answers

  1. Start_'s post in HELP! Error in script was marked as the answer   
    Change 4_F_KAFRA5 to other npc sprite id.
  2. 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:  
  3. Start_'s post in Add skill GREED to all character was marked as the answer   
    Add on db > re > skill_tree (Every jobs)
  4. Start_'s post in Changing EXP System Message was marked as the answer   
    Client folders > data > msgstringtable.txt
    and find the word.
  5. 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;  
  6. 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 .@OptID[0],RDMOPT_WEAPON_ATTR_TELEKINESIS;     setarray .@OptVal[0],0;     setarray .@OptParam[0],0;     getitembound3 28705,1,1,9,0,0,0,0,0,BOUND_CHAR,.@OptID,.@OptVal,.@OptParam; return; } 2.) in item script: callfunc("WakeFieldBox01");
  7. Start_'s post in Visual 2019 was marked as the answer   
    Tick
    Desktop dev with C++
    Universal Window Platform dev
     
  8. 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.
  9. Start_'s post in About Figure was marked as the answer   
    Change Class to BaseClass
  10. 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).
  11. 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
  12. Start_'s post in Where I edit the callfunc "F_GetPlatinumSkills" ? was marked as the answer   
    \npc\other\Global_Functions.txt
  13. 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);
  14. 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
  15. Start_'s post in Need code fix (problem with timers) was marked as the answer   
    - script TestScript::QuickTest 4_F_03,{ mes "What you want?"; next; switch(select("Use Charge", "See Charge", "Exit")) { case 1: if (.n_now > 0){ .n_now--; if (.n_now < .n_max) { setnpctimer 0; initnpctimer; npctalk "Starting recharges."; } getitem 512, 1; .cont = .delay; mes "Current C.: "+.n_now+"/"+.n_max; mes "Next Charge in "+((.cont)/1000)+"s."; } else{ mes "No Charges."; } close; case 2: mes "Delay per C.: "+.delay/1000+"s"; mes "Current C.: "+.n_now+"/"+.n_max; mes "Next Charge in "+((.cont)/1000)+"s."; close; } close; OnTimer4000: .n_now++; .cont = .delay; npctalk "Current C.: "+.n_now+"/"+.n_max; stopnpctimer; setnpctimer 0; if (.n_now >= .n_max) end; initnpctimer; npctalk "Next Charge in "+((.cont)/1000)+"s."; end; OnInit: .n_max = 5; //max charges .n_now = 5; //actual charge .delay = 4*1000;//time to recover 1 charge .cont = 0; //actual time left to recharge end; } prontera,164,170,4 duplicate(QuickTest) Test Quick#prt 4_F_03 Tested.
  16. Start_'s post in display the amount of zeny you receive was marked as the answer   
    .@zeny_reward = rand(5000,50000); Zeny += .@zeny_reward; dispbottom "Gained " + .@zeny_reward + "z";  
  17. Start_'s post in Cannot Find Sprite Help Fail loading was marked as the answer   
  18. Start_'s post in Check equipment ID the player is using was marked as the answer   
    use
    getequipid();
    doc\script_commands.txt line 2607
    then just add $equip_id_blablabla = n;
  19. Start_'s post in Falcon visible when hunter is on Hide was marked as the answer   
    It's work fine with lastest rAthena please try to use lastest rAthena.
  20. Start_'s post in Universal Catalog Silver Help was marked as the answer   
    Item name must be exact name like this
     
    Red Potion
    If you type Red it's not showing up.
     
    If I'm wrong then wait for other people answer.
  21. Start_'s post in npc slotting with new equip was marked as the answer   
    npc\merchants\socket_enchant.txt
    npc\merchants\socket_enchant2.txt
     
    Missing some item then add it manually.
  22. Start_'s post in Error Building_getitem was marked as the answer   
    Try
    prontera,137,111,5 script Maurel 604,{ // January ~ December Item Lists setarray .@ItemID[0],7539,5022,512,607,608,7539,5022,512,607,608,7539,5022; setarray .@Amount[0],10,10,10,10,10,10,10,10,10,10,10,10; if(#MonthlyReward != gettime(DT_MONTH)){ getitem .@ItemID[gettime(DT_MONTH)-1],.@Amount[gettime(DT_MONTH)-1]; #MonthlyReward = gettime(DT_MONTH); mes "You have grant an item for this month."; } else mes "You cant take a reward again this month."; close; }  
  23. Start_'s post in R > npc to get rid of bound items was marked as the answer   
    D:\rathena\conf\battle\items.conf
     
    // Allow selling of bound/sell restricted items as Itemshop currency? (Note 3) // 0x0 = Bound/sell restricted items are unable to be sold to Itemshops/Shops // 0x1 = Bound items are able to be sold to Itemshops // 0x2 = Sell restricted items are able to be sold to Itemshops // 0x4 = Bound items are able to be sold to Shops, //       because most of trade restricted items are still able to be sold to Shops // 0x8 = Only Guild Leader can sell BOUND_GUILD items to Shops or Itemshops (if 0x1 or 0x4 set) allow_bound_sell: 0x0  
  24. Start_'s post in R>Script for an item that gives discount for a certain shop was marked as the answer   
    Use shop scripts like this.
    And make your own script to discount.
    D:\rathena\doc\sample\npc_dynamic_shop.txt
  25. Start_'s post in Chat Spam [Allow chat spam] was marked as the answer   
    Client side, When patching nemo.

×
×
  • Create New...