Jump to content

quesoph

Members
  • Content Count

    562
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by quesoph

  1. ..conf/battle/skill.conf // Delay time after casting (Note 2)delay_rate: 100 and for specific skill If you are using pre-renewal server ..db/pre-re/skill_cast_db.txt if you are using renewal server ..db/re/skill_cast_db.txt How to tell if you are using renewal? check ..src/config/renewal.h ( the #define RENEWAL is not commented. ) This is renewal /// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas#define RENEWAL This is pre-renewal ( the #define RENEWAL is commented. ) /// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas//#define RENEWAL
  2. ^ its working. -,- @edit Compiled and tested with Hercules Rev 12803
  3. if(sd->bl.m == map->mapname2mapid("izlude")) { clif->message(fd, "@afk is not allowed on this map."); return false; } why ? i like afking in izlude.
  4. I think if you need to change the pet roulette sprite. it'll affect the taming process tho.
  5. I suggest changing changeemail.php's line 50: A confirmation email will be sent to your NEW email address. $sent = $mail->send($email, 'Change E-mail', 'changemail', array( to A confirmation email will be sent to your OLD email address. $sent = $mail->send($session->account->email, 'Change E-mail', 'changemail', array( I think its a way to prevent hackers from changing hacked account's email easily. @ps I cant pull request. I dont have git ;D
  6. post your updated script in your thread. with your edits.
  7. ...src/map/atcommand.c find: ACMD(refresh){ clif->refresh(sd); return true;} replace with: ACMD(refresh){ if (sd->state.storage_flag == 1) return false; clif->refresh(sd); return true;} recompile
  8. I love this design. Thank you! @edit Error: dunno what this is..
  9. I cant download it.. I dont have permission ?
  10. here http://herc.ws/board/topic/152-obtaining-hercules/
  11. Thanks man. @edit I downloaded your pull request diff. I think its missing something. Check attachment. I haven't converted it to work with hercules but it might help. accountbound.patch
  12. you dont need to edit the patch. just go to ../src/map/atcommand.c find: ( CTRL + F ) ACMD_DEF(skdebug),addACMD_DEF(autoattack),it should look like: ACMD_DEF(skdebug), ACMD_DEF(autoattack),@themontry this
  13. post in on suggestion section. devs might implement this
  14. manual patch it. or if it has errors then post it.
  15. If you cant find it there then it doesn't exist in hercules.. @edit http://www.eathena.ws/board/index.php?showtopic=264223
  16. test it... 71862-critical-hit-on-magic-2.patch 71297-autoattack.patch
  17. quesoph

    item2

    //createatcommand "@item2 " + getequipid(6) + " 1 1 " + getequiprefinerycnt(6) + " 0 " + getequipcardid(4,0) + " " + getequipcardid(4,1) + " " + getequipcardid(4,2) + " " + getequipcardid(4,3);atcommand "@item2 " + getequipid(4) + " 1 1 " + getequiprefinerycnt(4) + " 0 0 0 0 0";//delete?delitem getequipid(4),1;delitem getequipid(6),1; why not use getitem2? //creategetitem2 getequipid(6) , 1, 1, getequiprefinerycnt(6) , 0, getequipcardid(4,0) , getequipcardid(4,1) , getequipcardid(4,2) , getequipcardid(4,3);getitem2 getequipid(4) , 1, 1, getequiprefinerycnt(6) , 0, 0, 0, 0, 0;//delete?delitem getequipid(6),1;delitem getequipid(4),1; @edit No commas for @item2.
  18. ^ whats not working ? you mean even the bonus agi, dex, vit doesn't work for you? i've tested it and it works.
  19. ^ oninit part should be setarray. GJ. here try?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.