Syndicate Posted September 5, 2012 Posted September 5, 2012 How to disable skull in WoE?? cause I implemented skull in my server and its fine.. But in WoE its kinda messy . I want to disable the SKULL drop in a certain area... I already put the map in no_loot.txt and still the skull are dropping .. please help me. Thank you Quote
clydelion Posted September 5, 2012 Posted September 5, 2012 check the file trunk/conf/battle/player.conf bone_drop: 0 Quote
nanakiwurtz Posted September 5, 2012 Posted September 5, 2012 (edited) Untested: find in file src/map/pc.c replace this line: || (battle_config.bone_drop==1 && map[sd->bl.m].flag.pvp)) with this: || (battle_config.bone_drop==1 && map[sd->bl.m].flag.pvp && !map[sd->bl.m].flag.gvg)) and recompile your server.. I forget is it 'map[sd->bl.m].flag.gvg' or 'map[sd->bl.m].flag.gvg_castle' (Sorry I think it only in my mind and haven't test it on actual server) Edited September 5, 2012 by nanakiwurtz Quote
Mystery Posted September 6, 2012 Posted September 6, 2012 @nana, Why change the source if you can change a config so easily? o_O // Players' will drop a 'Skull' when killed? // 0 = Disabled // 1 = Dropped only in PvP maps // 2 = Dropped in all situations Since WoE doesn't use a PvP Mapflag of any sort; it uses a GvG Mapflag based setting. Thus, having it at 1 or Disabled won't make it drop in WoE Maps. Quote
nanakiwurtz Posted September 6, 2012 Posted September 6, 2012 The problem is I'm not sure whether WoE is considered a PvP too or not, that's why I tried to alter the src file and haven't try the setting 'bone_drop: 1' Quote
Syndicate Posted September 7, 2012 Author Posted September 7, 2012 yes problem solved. Thank you guys !! Quote
Question
Syndicate
How to disable skull in WoE??
cause I implemented skull in my server and its fine.. But in WoE its kinda messy .
I want to disable the SKULL drop in a certain area...
I already put the map in no_loot.txt and still the skull are dropping ..
please help me. Thank you
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.