Jump to content

Keitenai

Members
  • Posts

    98
  • Joined

  • Last visited

  • Days Won

    11

Community Answers

  1. Keitenai's post in Adding Custom group permission was marked as the answer   
    Next will be : 
         0x10000000
         0x20000000
         0x40000000
         0x80000000
  2. Keitenai's post in Hunter dont follow the target was marked as the answer   
    Try disabling the OFFICIAL_WALKPATH in src/config/core.hpp
  3. Keitenai's post in How to put quest cooldown 24h in this script? was marked as the answer   
    @Noctis Try this ( based on your script )
     
    if (!callfunc("D_huntermark")) { mes "You need to have a"; mes "^4d4dff'Hunter License'^000000"; mes "to receive this mission."; close; } if (checkquest(70255) != -1) { if (checkquest(70255,HUNTING) != 2 ) { mes "[Leorio Veteran Hunter]"; mes "Are you done with those Ferus? Quit slacking?"; next; switch(select("Yes:No:I want to withdraw from this mission")) { case 1: mes "[Leorio Veteran Hunter]"; mes "Other Hunters would be honoured to receive such an assignment."; mes "Don't ever think of coming back until the task is done, got it?"; close; case 2: mes "[Leorio Veteran Hunter]"; mes "You STILL haven't suceed? Time is short, make it quick!"; close; case 3: mes "[Leorio Veteran Hunter]"; mes "Not everyone's up for a challenge. You need to train harder."; mes "Are you 100% sure you want to withdraw?"; next; switch(select("Yes:No")) { case 1: mes "[Leorio Veteran Hunter]"; mes "Until we meet again, Hunter."; erasequest 70255; close; case 2: mes "[Leorio Veteran Hunter]"; mes "That's the spirit! No quitters! Give 'em hell!"; close; } } } mes "[Leorio Veteran Hunter]"; mes "You proved yourself worthy and willing. Congratulations, you've been rewarded."; specialeffect2 EF_MAGICALATTHIT; specialeffect2 EF_POTION2; specialeffect2 EF_ANGEL2; getexp 18818,7527; erasequest 70255; close; } if ((BaseLevel > 141) && (BaseLevel < 150)) { mes "[Leorio Veteran Hunter]"; mes "Name's Leorio. Im a Veteran Hunter for the Rune Midgard Hunting Elite, we have plenty of tasks that need a hand, and will receive some loot in return."; mes "What do you say? Willing to work for us?"; next; switch(select("Sure:No")) { case 1: mes "Are you absolutely sure about this?"; next; switch(select("Of course:Just kidding")) { case 1: if(BaseLevel > 151){ mes "[Leorio Veteran Hunter]"; mes "Let the low ones get these leftovers, go talk to someone else within the Rune Midgard Hunting Elite."; close; } if(character_delay>gettimetick(2)){ mes "[Leorio Veteran Hunter]"; mes "You need to wait"; set .@h,((character_delay-gettimetick(2))/3600); set .@m,((character_delay-gettimetick(2))-(.@h*3600))/60; if( .@m > 0 ){ if( .@h > 0 ) mes "^4d4dff"+.@h+"^000000:^4d4dff"+.@m+"^000000 hour(s)"; else mes "^4d4dff"+.@m+"^000000 minutes"; } mes "to get new mission."; close; } mes "[Leorio Veteran Hunter]"; mes "Seems like you can be worthy. Let's see if you can handle my task. I doubt it, but we'll see."; setquest 70255; set character_delay,gettimetick(2)+86400; close; case 2: mes "[Leorio Veteran Hunter]"; mes "On second thought, I guess there's no harm in joining."; close; } case 2: mes "[Leorio Veteran Hunter]"; mes "We only want the best with us either way."; close; } } mes "[Leorio Veteran Hunter]"; mes "This is way ahead of your league, newbie. Go back to the safety of Prontera."; close; }  
    I haven't tested but i think it will work  
×
×
  • Create New...