Jump to content

deathscythe13

Members
  • Posts

    118
  • Joined

  • Last visited

  • Days Won

    2

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. 2093
  6. i think this is not a script problem >.<
  7. 2085
  8. 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; }
  9. what do you mean offline and online? o.o check your mapserver for the errors.
  10. thanks for your release its really great btw are the 2 attachment the same?
  11. hmm post your errors
  12. 2077
  13. function script resetMVPRank { for(set .@c, 0; .@c < $@top; set .@c, .@c+1) { setd "$topmvp" + .@c, 0; setd "$topmvp" + .@c + "$", ""; } }
  14. 2066
  15. how about changing if(Class == Job_Thief)
  16. 2057
  17. if you make a command to disable pet it is still pointless since you get gravity error when you logged in o.o right?
  18. edit .@map to .@map$
  19. - 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; }
  20. 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
  21. if(getskilllv("MG_FROSTDIVER"))
  22. 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
  23. 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$ + ":"; }
  24. 2051
  25. setriding EDIT: setmounting()
×
×
  • Create New...