Jump to content

hell666yeah

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    India

hell666yeah's Achievements

Poring

Poring (1/15)

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Hello all, I am facing an issue where the falcon is visible when the hunter hides to other players. I am using the following client: 2018-04-18a. Please help if possible.
  2. Thank you so much Emistry for resolving this for me. I am late to thank you but I really appreciate what you have done for me Panda: Thank you !
  3. Thank you very much.. I will give it a try today itself.. Sorry it did not work.. It just gave me following message withoout reset "You can only do a reset once a day!"; Here is my script: //===== rAthena Script ======================================= //= Reset NPC //===== By: ================================================== //= rAthena Dev Team //===== Current Version: ===================================== //= 1.3 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Resets skills, stats, or both. //===== Additional Comments: ================================= //= 1.0 First Version //= 1.1 Optimized for the greater good. [Kisuka] //= 1.2 Cleaning [Euphy] //= 1.3 All statuses removed upon skill reset. [Euphy] //============================================================ prontera,150,193,4 script Reset Girl 124,{ ResetDelay1 = gettimetick(2)+86400; if(gettimetick(2) < ResetDelay1) { mes "You can only do a reset once a day!"; close; } .@ResetStat = 150000; // Zeny for stat reset .@ResetSkill = 5000; // Zeny for skill reset .@ResetBoth = 9000; // Zeny for resetting both together mes "[Reset Girl]"; mes "I am the Reset Girl."; mes "Reset Stats: " + callfunc("F_InsertComma", .@ResetStat) + "z"; mes "Reset Skills: " + callfunc("F_InsertComma", .@ResetSkill) + "z"; mes "Reset Both: " + callfunc("F_InsertComma", .@ResetBoth) + "z"; mes "Please select the service you want:"; next; switch(select("^FF3355Reset Stats^000000:Cancel")) { case 1: mes "[Reset Girl]"; if (Zeny < .@ResetStat) { mes "Sorry, you don't have enough Zeny."; close; } Zeny -= .@ResetStat; resetstatus; mes "There you go!"; close; case 2: close; } }
  4. Please help ! I have a stats reset npc default one.. how do I make it work like a character has to work atleast 5 hours to do another stat reset after the performs one.
×
×
  • Create New...