Jump to content

Capuche

Developer
  • Posts

    2407
  • Joined

  • Last visited

  • Days Won

    51

Everything posted by Capuche

  1. Use if( isloggedin( $toNuke[.@i] ) { if( isloggedin( $toNuke[.@i] ) ) { before set .@target$,rid2name($toNuke[.@i]); if(.@target$!="(null)") { ( then you cand remove if(.@target$!="(null)") { )
  2. so if i wan to held it on sunday only, it will be like this? if(gettime(4) == 1 || gettime(4) == 2 || gettime(4) == 3 || gettime(4) == 4 || gettime(4) == 5 || gettime(4) == 6 ) Yes or if( gettime(4) != 0 ) end;
  3. - script ghjkl -1,{ OnPCDieEvent: if( getgmlevel() > 0 && killerrid ) { .@acc_id = getcharid(3); attachrid( killerrid ); if( getgmlevel() > 0 ) end; attachrid( .@acc_id ); announce "GM " + strcharinfo(0) + " had been kill by Player " + rid2name( killerrid ) + " !",0; } end; }
  4. It was an NPC cooldown o.O
  5. Use search function Example http://rathena.org/board/topic/76665-annierurus-devil-square-script/page__hl__%2B%2Bdevil+%2B%2Bsquare
  6. http://pastebin.com/gkmghfVk
  7. Unoptimized : I suggest you to use Euphy's Quest Shop which is based on Lunar's Shop (your shop), who is very simple and more optimized. Euphy's script http://pastebin.com/raw.php?i=G7pt6HR7
  8. Capuche

    Prof dispell

    To remove dispell without remove status changes blocking by gtb In src/map/skill.c find case SA_DISPELL: if (flag&1 || (i = skill_get_splash(skill_id, skill_lv)) < 1) { clif_skill_nodamage(src,bl,skill_id,skill_lv,1); if((dstsd && (dstsd->class_&MAPID_UPPERMASK) == MAPID_SOUL_LINKER) || (tsc && tsc->data[sC_SPIRIT] && tsc->data[sC_SPIRIT]->val2 == SL_ROGUE) //Rogue's spirit defends againt dispel. || rnd()%100 >= 50+10*skill_lv || ( tsc && tsc->option&OPTION_MADOGEAR ) )//Mado Gear is immune to dispell according to bug report 49 [ind] { if (sd) clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); break; } if(status_isimmune(bl) || !tsc || !tsc->count) break; Remove status_isimmune(bl) if(status_isimmune(bl) || !tsc || !tsc->count) to if(!tsc || !tsc->count) then recompile.
  9. Event start with whisper system for GM : start/end to start or end the event. Set the configuration for the number of mob spawn, it ID and reward ID. Maybe it's not full optimized but ranking without SQL
  10. Yes there is. In trunk/doc/script_commands.txt
  11. He means GM level 90 so you're wrong. It's getgmlevel() --> error ! And he wants normal players are allowed to use it. So in these reply the good answer is answer B, by KeyWorld
  12. You make the same NPC that your request ? lol
  13. trunk/conf/battle/items.conf That means if bonus bNoMagicDamage,50; and gtb_sc_immunity: 50 ( -->> gtb_sc_immunity value < bNoMagicDamage value ) then GTB block dispell.
  14. Clown ->> male ->> all characters in your account will be male Gypsy ->> female ->> all characters in your account will be female Use *changesex; set .@eac, eaclass(); if( Zeny < 3000000 || BaseLevel < 99 || ( Class < 4008 && Class != 23 && Class != 24 && Class != 25 ) || .@eac&EAJL_BABY ) goto switchrequired;
  15. R_yes1.2 Wrong. Don't ever use . in label name. if(countitem(7864)2)goto L_broke; Learn to read the error shown on your map_server console, it's very easy /$
  16. ... or trunk/conf/mapflag/nosave.txt Use yourmapname mapflag nosave SavePoint
  17. As you can see, there are 2 rates : base_exp_rate and job_exp_rate in your trunk/conf/battle/exp.txt Check yours rates and you change this setting to double exp ~ set $@brate, base_exp_rate * 2; // Change the value here for your Base Experience set $@jrate, job_exp_rate * 2; // Change the value here for your Job Experience
  18. If you guess right then he just need to change the drops of his treasure ( mob_db )
  19. Capuche

    OnPcDieEvent

    Add if( killedrid > 3000000) end;
  20. First at all http://rathena.org/b...nt-3-codeboxes/
  21. He just tried to help you... with this kind of attitude, I wouldn't even try >>
×
×
  • Create New...