Jump to content

crazyarashi

Developer
  • Posts

    763
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by crazyarashi

  1. I think that just add up to the every 5 sec regeneration.
  2. You know the client doesnt have connection in skills behavior since its all on server side. what hash are you using
  3. If you don't want to change the skill_db just use the mapflag monster_noteleport
  4. 2448,9,6,1,5,0x2,1:1:1:1:2,5,1,yes,0,0,0,magic,0,0x0, SO_POISON_BUSTER,Poison Buster Poison buster has a splash area. better try again :)) You can edit the skill splash in skill_db
  5. your request lacks information and on the wrong section, please do provide your request clearly
  6. I believe the current exp table only supports up to lvl 500, you can try doubling it :))
  7. Had a pretty good laugh with Capuche's comment, anways, npc/re/cities/dicastes
  8. The same as the customs put the script file on the destination and add it on the conf.
  9. sec_in02,154,165,6 script Fishing Hole 723,{ //Fishing rod set .@Rod,2764; //Fishing Lure set .@Lure,2775; //Auto-Fish set .@Auto,1; //Auto-Fish on Fail set .@AutoFail,1; Fish: if (isequipped(.@Rod)) && (isequipped(.@Lure)){ specialeffect EF_BUBBLE,"Fishing Hole"; dispbottom "[Fishing] Baiting....."; set .@fcast,11; if (isequipped(2550)) { //Fisher's Muffler set .@fcast,.@fcast - 2; } if (isequipped(2443)) { //Fisher's Boots set .@fcast,.@fcast - 2; } if (isequipped(2764)) { //Fishing Rode set .@fcast,.@fcast - 3; } if (isequipped(2775)) { //Fishing Lure set .@fcast,.@fcast - 1; } progressbar "ffffff",.@fcast; if (rand(1,10) == 2){ // 10% getitem 26080,1; //Credit specialeffect2 EF_TEMP_OK; mapannounce strcharinfo(3),strcharinfo(0)+" has caught a ATM Credit Card x1!",bc_map,"0xff77ff"; } if (rand(1,20) == 2){ // 5% getitem 7227,5; //TCG specialeffect2 EF_TEMP_OK; mapannounce strcharinfo(3),strcharinfo(0)+" has caught TCG Cards x5!",bc_map,"0xff77ff"; } if (rand(1,100) == 2){ 1% getitem 671,1; //Gold Coins specialeffect2 EF_TEMP_OK; mapannounce strcharinfo(3),strcharinfo(0)+" has caught a Gold Coin x1!",bc_map,"0xff77ff"; } if(.@Auto==1){ goto Fish;}else{ end;} } else { dispbottom "[Fishing] You need a Fishing Rod and Lure."; end; } } Applying the basic math for percentage will do the trick.
  10. You need to add it on the scripts conf. for customs put it in scripts_custom.conf Wiki - Basic of Adding Scripts npc: npc/custom/healer.txt // Load Healer
  11. Just set your notepad++ encoding -> character sets to Korean
  12. You can normally find them in your data.grf try updating yours.
  13. Hi I'm kind of stuck in this, I want to do a checkquest for every quest_id in an array, I tried most stuffs. Looking for people who can enlighten me! Thank you in advance :))
  14. Did you try changing your client langtype to arabic
  15. // 07 splash/effect range // -1 - for screen-wide // 0 - no splash // all other values follow the formula: value * 2 + 1 // 1 - 3x3 // 2 - 5x5 // 3 - 7x7 skill.db
  16. You need to get an updated msg string table or update your servers msg_conf
  17. crazyarashi

    ETC Items

    I think if you put the item on the skill tab it will automatically display the amount except for equipments.
  18. crazyarashi

    Refiner

    You are not using rathena.
  19. crazyarashi

    Refiner

    Make sure your custom item is set to refinable in your item database. PS. Use smaller fonts please
×
×
  • Create New...