quesoph
Members-
Content Count
562 -
Joined
-
Last visited
-
Days Won
6
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by quesoph
-
..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
-
Extended Vending System UPDATED rev14395! by Lilith
quesoph replied to quesoph's topic in Source Releases
^ its working. -,- @edit Compiled and tested with Hercules Rev 12803 -
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.
- 152 replies
-
- afk atcommand
- @afk
-
(and 2 more)
Tagged with:
-
I think if you need to change the pet roulette sprite. it'll affect the taming process tho.
-
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
- 206 replies
-
- control panel
- flux
-
(and 1 more)
Tagged with:
-
post your updated script in your thread. with your edits.
-
^ yes thats all.
-
...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
-
I love this design. Thank you! @edit Error: dunno what this is..
-
I cant download it.. I dont have permission ?
- 64 replies
-
- autoattack
- @autoattack
-
(and 3 more)
Tagged with:
-
About the Git release of Hercules, (i want to change it to pre-re)
quesoph replied to rmon008's question in Source Support
here http://herc.ws/board/topic/152-obtaining-hercules/ -
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
- 10 replies
-
- countbound
- getbounditem
-
(and 1 more)
Tagged with:
-
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
-
I agree with Mysterious
-
-
post in on suggestion section. devs might implement this
-
manual patch it. or if it has errors then post it.
-
If you cant find it there then it doesn't exist in hercules.. @edit http://www.eathena.ws/board/index.php?showtopic=264223
-
test it... 71862-critical-hit-on-magic-2.patch 71297-autoattack.patch
-
Request - NPC SHOP for Proof of Donations Only
quesoph replied to esquilla13's question in Script Requests
Thats normal. -
//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.
-
Awesome! Thank you!
-
^ whats not working ? you mean even the bonus agi, dex, vit doesn't work for you? i've tested it and it works.
-
^ oninit part should be setarray. GJ. here try?
-
try?