Jump to content

deathscythe13

Members
  • Posts

    118
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by deathscythe13

  1. if(countitem(7420)) { //do something }
  2. is this npc like gathering materials? i didn't get the last part.. are the players able to get the gear?
  3. given above should work >.< , how about putting OnWed20000: inside sonicxxx sonicxxx: OnWed2000:
  4. what poring summoner? i dont see any poring summoner in his release xD, btw mysterious what are inside gryphons.rar and where do i place this?
  5. prontera,156,182,4 script gold room 100,{ mes "[gold room]"; if(#timer == gettime(4)) { switch(#timer) { case 0: mes "You wont be able to use the gold room until monday 12:01am"; break; case 1: mes "You wont be able to use the gold room until tuesday 12:01am"; break; case 2: mes "You wont be able to use the gold room until wednesday 12:01am"; break; case 3: mes "You wont be able to use the gold room until thursday 12:01am"; break; case 4: mes "You wont be able to use the gold room until friday 12:01am"; break; case 5: mes "You wont be able to use the gold room until saturday 12:01am"; break; case 6: mes "You wont be able to use the gold room until sunday 12:01am"; break; } close; } mes "Ok i will warp you now to the gold room"; next; warp "prontera",0,0; attachnpctimer strcharinfo(0); initnpctimer; set #timer, gettime(4); close; OnTimer3600000: //1hour warp "prontera",0,0; dispbottom "time is up you are now warped!"; stopnpctimer; end; }
  6. what do you mean offline and online? o.o check your mapserver for the errors.
  7. thanks for your release its really great btw are the 2 attachment the same?
  8. function script resetMVPRank { for(set .@c, 0; .@c < $@top; set .@c, .@c+1) { setd "$topmvp" + .@c, 0; setd "$topmvp" + .@c + "$", ""; } }
  9. how about changing if(Class == Job_Thief)
  10. if you make a command to disable pet it is still pointless since you get gravity error when you logged in o.o right?
  11. edit .@map to .@map$
  12. - script pvppoint -1,{ OnInit: set .killaddpoint, 2; //points to add when kill set .diedeductpoint, 1; //points to deduct when died end; OnPCKillEvent: getmapxy .@map$,.@mapx,.@mapy,0; if ( .@map$ != "guild_vs3" && .@map$ != "pvp_y_1-2" && .@map!="prtg_cas01") end; if(getcharid(3)==killedrid) end; set points, points+.killaddpoint; dispbottom "You killed "+rid2name(killedrid)+" you gained "+.killaddpoint+" points"; attachrid(killedrid); set points, points-.diedeductpoint; dispbottom "You are killed by "+rid2name(killerrid)+" you lost "+.diedeductpoint+" points"; end; }
  13. npc/merchants/renters.txt uh edit: its only rune knight peco breeder in there xD, i think there is none yet for renting mado, only custom made
  14. that means it is trying to delete an item in your inventory even though its not there.. try changing the conditions with the item requirement edit: and as for the all inventory option sorry but i cant help
  15. change anything that has to do with getequiprefinerycnt remove if (getequiprefinerycnt(.@part) < 10) { next; mes "[" + getarg(0) + "]"; mes "You changed your equipment!"; mes "You douchebag!!"; next; atcommand "@nuke "+strcharinfo(0); end; } change for( set .@i,1; .@i <= 10; set .@i,.@i+1 ) { if( getequipisequiped(.@i) && (getequiprefinerycnt(.@i) >= 10) ) set .@menu$, .@menu$ + .@position$[.@i] + "-" + "[" + getequipname(.@i) + "]"; set .@menu$, .@menu$ + ":"; } to for( set .@i,1; .@i <= 10; set .@i,.@i+1 ) { if( getequipisequiped(.@i) && (getequiprefinerycnt(.@i) >= 0) ) set .@menu$, .@menu$ + .@position$[.@i] + "-" + "[" + getequipname(.@i) + "]"; set .@menu$, .@menu$ + ":"; }
  16. setriding EDIT: setmounting()
×
×
  • Create New...