Jump to content

QQfoolsorellina

Members
  • Posts

    587
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by QQfoolsorellina

  1. I think It was already fixed by epoque11,,just updating your svn revision warp script work fine with 16020
  2. my configuration conf/battle/monster.conf // Time in milliseconds to actitave protection against Kill Steal // Set to 0 to disable it. // If this is activated and a player is using @noks, damage from others players (KS) not in the party // will be reduced to 0. ksprotection: 120000 I use "@noks self" to aktivate the protection and it work , but the protect time is more short than setting value ,in fact only 20~30 second protection.Anyone know Is there anything wrong?
  3. I like to use sql log, coz sql qurey is convienient when logs more and more large
  4. if(!countitem(itemid)){ mes "you don't have ticket!" close; }
  5. I create a fucntion int checksonething(){} in src/map/vending.c to check somthing ,then I want to use the fuction in atocmmand.c how should I let the specified fucntion work in atocmmand.c?
  6. Hi~~Lilith this is a usefull mod . I like it a lot., but I was very greedy to make a suggestions Is this possible to build ? skillid,normal map % damage, pvp map % damage, gvg map%damage,battle ground %damage ,damage type flag ----------------------------------------------------------------------------------------------------------------------------------------- edit : thanks for updating so fast
  7. That's a good news for all users! you did a great job!
  8. indside BUILDIN_FUNC(failedrefitemR) try to change log type log_pick_pc(sd, LOG_TYPE_SCRIPT, sd->status.inventory.nameid, 1, &sd->status.inventory);
  9. line 287 should be announce "Number of Rouds: "+$guessrounds;
  10. it's working for me http://2.imgland.net/QANJb.jpg myabe you forgot to use tab key any erro on your map server? louyang,217,115,5<tab>script<tab>Quest Items Effect<tab>835,{
  11. Hi~rathena friend, I was wondering Is it possible to fix auto- shoutdown the RE client when login with wrong password? Thanks a lot.
  12. case 7: { mes "Allstats + 5"; mes "Increase Damage to DemiHuman by 5%"; close; +} +} OnInit: waitingroom "Quest Info Effects",0; end; -} -} }
  13. it seems that scrip can't be settled on minute 30 why not use this it was working for me http://rathena.org/board/topic/57377-toastys-woe-controller/
  14. there are two ways to solve that issue 1 increse gotocount script_athena.conf check_gotocount:655360 2 another way ---add a sleep2 1; before goto
  15. - <tab>script<tab>NPCNAME<tab>-1,{ OnWhisperGlobal: if (@whispervar0$ != "NPC On")end; set .@whaid,getchaird(3); OnInit: if(.@whaid) callfunc("TestMenus"); <Script> end; } function TestMenus { <Script> retrun; }
  16. - <tab>script<tab>NPCNAME<tab>-1,{ OnWhisperGlobal: if (@whispervar0$ != "NPC On")end; OnInit: <Script> end; } or other way http://rathena.org/board/topic/60694-oninit-trigger/
  17. try copy content idnum2itemdisplaynametable.txt idnum2itemresnametable.txt idnum2itemdesctable.txt into num2itemdisplaynametable.txt num2itemresnametable.txt num2itemdesctable.txt
  18. in same fuction skill_castfix find if( scale > 0 ) // not instant cast variable_time = variable_time * (int)scale / rate; else return 0; // instant cast change to if( scale > 0 ) // not instant cast variable_time = variable_time * (int)scale / rate; else return ( sc && sc->data[sC_MANDRAGORA] ? 2000 : 0 ); // instant cast
  19. src/map/skill.c in int skill_castfix(struct block_list *bl, int skill_id, int skill_lv) + if( sc && sc->data[sC_MANDRAGORA]) + final_time=final_time+3000; // config cast time multiplier if( battle_config.cast_rate != 100 ) final_time = final_time * battle_config.cast_rate / 100; // return final cast time return (final_time > 0) ? final_time : 0;
  20. cash: getmapxy .@map$, .@x, .@y, 0; getmapxy .@map$, .@x1, .@y1, 1; if ( distance( .@x, .@y, .@x1, .@y1 ) > 5 ) end; Idiot: getmapxy .@map$, .@x, .@y, 0; getmapxy .@map$, .@x1, .@y1, 1; if ( distance( .@x, .@y, .@x1, .@y1 ) > 6 ) end;
  21. src/login/login.c find if( login_config.group_id_to_connect >= 0 && sd->group_id != login_config.group_id_to_connect ) you can try changed != to < and recompile.. that should be as you want
×
×
  • Create New...