Jump to content

quesoph

Members
  • Posts

    210
  • Joined

  • Last visited

Community Answers

  1. quesoph's post in How to change this to Mithril coin was marked as the answer   
    change these :

    set #CASHPOINTS, #CASHPOINTS + 2;

    set #CASHPOINTS, #CASHPOINTS + 50;

    set #CASHPOINTS, #CASHPOINTS + 200;
    to

    getitem 674,1; // 1 mithril coin
  2. quesoph's post in 3rd class breeder was marked as the answer   
    i dunno why setriding doesn't work with that script.. hmm..
    try to use this..

    //===== rAthena Script ======================================= //= Universal Rental NPC //===== By: ================================================== //= rAthena Dev Team //===== Current Version: ===================================== //= 1.3a //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= A Free PecoPeco and Falcon Breeder //===== Additional Comments: ================================= //= 1.1 FIXED checkriding/cart/falcon funcs [Lupus] //= 1.2 Added Rebirth/Advanced Class support [Mass Zero] //= 1.3 Simplified the checks of job [silentdragon] //= 1.3a Fixed a Typo Error. [samuray22] //= Thanks to ~AnnieRuru~. //= 1.4 Optimized Script. No need for 50 million Labels. [spre] //============================================================ prontera,124,201,1 script Universal Rental Npc 726,{ mes "[universal Rental Npc]"; mes "Hi, here you can rent Carts, Falcons or Pecopecos."; next; switch(select("Cart:Falcon:Peco:Warg:Mado")) { case 1: if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0 && getskilllv("MC_PUSHCART")>0) { setcart; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 2: if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0 && getskilllv("HT_FALCON")>0) { setfalcon; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 3: if (checkriding() == 0 && getskilllv("KN_RIDING")>0 && Class == 4060 || Class == 4054 || Class == 4066 || Class == 4073) { atcommand "@mount"; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 4: //ward if (BaseJob != Job_Archer && BaseClass == Job_Archer && countitem(6124) == 0) { getitem 6124,1; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 5: // mado if (BaseJob != Job_Merchant && BaseClass == Job_Merchant && checkriding() == 0 && getskilllv("NC_MADOLICENCE")>0 && Class == 4064 || Class == 4058) { atcommand "@mount"; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } } }
  3. quesoph's post in Jumper event was marked as the answer   
    npc:jumpevent
×
×
  • Create New...