Jump to content

GM Takumirai

Members
  • Posts

    592
  • Joined

  • Last visited

Everything posted by GM Takumirai

  1. - 1st post your script - 2nd post this in script section this is the example
  2. Script Name : Information Center - Script Created By : ManiacSociety - Helper : Emistry & Kenpachi MYSQL FUNCTION : Edit Lines : Functions : - MySQL - In Game Donation Game Master : - Only administrator are allowed to add,delete,edit and view codes. - Code Generate (No need to enter code automatic) Normal Player : - Enter Code Process : - GM will add the generated code and will automatically added to the database. - If theres a donator and you wanted to give the codes you have to give the verification code and they have to activate it, once the VC is verified and correct the npc will automatically give the generated or promotion code. - If the player receive the code already they have to enter the code and direct to the shop. (WARNING) - Edit shop 1 code = 1 items chosen (Much better to use box instead of items.) If you have problem with that kindly post here. And also please wait for mysql commands im fixing what you have to add. http://pastebin.com/QBYjjrjj - Note this is not mine - and i don't know if this is going to work - copyright goes to the maker
  3. - i have a problem again, woe 2 dont spawn emp is there another woe setter?
  4. http://rathena.org/board/topic/63144-how-to-know-if-a-player-has-a-specific-skill/page__p__99652#entry99652
  5. Genosuke i dont have an accnt, btw genosuke i have a question the eden quest of cat paw, it doesnt appear in rathena, About ur other release, why i cant check it? Like for example the head gear quest
  6. nice - thanks malufet - can you also adjust the over bound skills - its too anoying in my server it do an over kill 150/50 rate w/ default stats
  7. command? or the kafra card to use storage? if command you can make map<tab>mapflag<tab>command<tab>level of GM if its kafra card you can
  8. - need this also., also the item sprite because the items are all unknown item and the sprite is apple
  9. Example check here http://eathena-project.googlecode.com/svn/trunk/doc/item_bonus.txt
  10. can someone make a job quest of this 2 jobs?.. can someone share it?
  11. You can edit the script of some scroll example: assumption scroll and change some of it as the bonus below i don't know if this is correct - //-- CG_TAROTCARD 489,1000,3000,0,0,30000,0,0 /db/re/skill_cast_db.txt // Structure of Database: // SkillID,CastingTime,AfterCastActDelay,AfterCastWalkDelay,Duration1,Duration2,Cool Down,Fixed Casting Time //== Explained: // CastingTime : time to cast this skill, in miliseconds // AfterCastActDelay : "normal" delay, character cannot use skills, in miliseconds // AfterCastWalkDleay : amount of time before character can move again, in miliseconds // Duration1 / Duration2 : usually the durations used by the skill, at special cases it is used to hold special data // Cool Down : amount of time until character can re-use this skill, in miliseconds // Fixed Casting Time: the skills fixed casting time (when 0, uses 20% of cast time)
  12. This is not mine but im going to share it - credits to eAthena
  13. example is in renting a mado required a license skills
  14. you post this in script collection in utility joseph..
  15. rAthena already provide the renewal_refine_rate - look inside your db folder
  16. make an NPC that change your cooldown in ET using purification stone
  17. My problem is the item when use if weight is more than 0 it still can used but the skill points is not reset .. i need your help to modify my script because i can't get it to the correct one if weight is < or = to 0 go to call function else if weight is over the weight message will appear and the item will not be used but the item is still in the inventory
  18. nice its like a vending npc but users can vend it like auction - OT: good to see you back Z3RO <3 btw Z3RO - as topic starter - what if you have a vend npc - but users/normal player will pay for 1,000,000m per 7week to vend there items there and the max vending machine npc is 20 items - if player will vend there item to the npc the npc will say the vending machine is full wait for the other items to expire.. and player will buy it.. i know some like this script have an exploit can you make a safe one Z3RO?
  19. its ok Magnetix thanks anyway, - here's now my stat reset npc http://rathena.org/board/topic/62734-statskill-reset-purified-reset-stone/
  20. Stat-Reset NPC http://pastebin.com/csGRZsvZ Information : - Using item [Purified Reset Stone] # if you want to change the item needed on reset you can change item ID: 6320 change it to the item you want. - to change how many required ingredients change the setarray .stones[0], 1, 2, 3, 4, 5, 6, 7; <<< change the numbers to your requirements - Free Reset [ If your character is first time to visit the reseter you have a first free reset ] - after that you can't reset for free anymore - This is only allow you to restart your stat but if you like to reset your skill just add this below resetstatus; ResetSkill; - special thanks to Holger
  21. again i have a problem - when i click the menu reset it stock and the call function is not appear - i made a script can you modify it again ' prontera,146,304,5 script Reseter 407,{ set .name$, "[Reseter]"; if (BaseLevel <= 20) { mes .name$; mes "If you are level 20 below, Reset Stat & Skills will cost you 5,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (Zeny >= 5000) { set Zeny, Zeny - 5000; ResetStatus; ResetSkill; cutin "kafra_09.bmp",255; mes "[Reseter]"; mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; close; } } else if (BaseLevel > 20 && BaseLevel <= 40) { mes .name$; mes "If you are level 20-40, Reset Stat & Skills will cost you 2x Premium Reset Stone and 10,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 2) goto noitem; if (Zeny >= 10000) { delitem 29455,2; set Zeny, Zeny - 10000; ResetStatus; ResetSkill; cutin "kafra_09.bmp",255; mes "[Reseter]"; mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; close; } } else if (BaseLevel > 40 && BaseLevel <= 80) { mes .name$; mes "If you are level 40-80, Reset Stat & Skills will cost you 3x Premium Reset Stone and 100,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 3) goto noitem; if (Zeny >= 100000) { delitem 29455,3; set Zeny, Zeny - 100000; ResetStatus; ResetSkill; cutin "kafra_09.bmp",255; mes "[Reseter]"; mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; close; } } else if (BaseLevel => 90) { mes .name$; mes "If you are level 90 above, Reset Stat & Skills will cost you 5x Premium Reset Stone and 10,000,000z want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 5) goto noitem; if (Zeny >= 10000000) { delitem 29455,5; set Zeny, Zeny - 10000000; ResetStatus; ResetSkill; cutin "kafra_09.bmp",255; mes "[Reseter]"; mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; close; noitem: mes "[Reseter Manager]"; mes "You dont have enough [Premium Reset Stone].."; close; } @Emistry i need your help please.. thanks
×
×
  • Create New...