Jump to content

Leic

Members
  • Posts

    48
  • Joined

  • Last visited

Everything posted by Leic

  1. ok thanks. suggesting to add which type of event will be randomize before initiating.. ex: what events should be randomize? (cluckers, bombring) then it will randomize it tyia
  2. @Emistry is it possible to have non tradable items be listed on the menu of given items? I was trying to configure it however I failed
  3. having this problem on deleting. can't delete other events
  4. instance_create crashes the server constant crashes happening on my server lucky event crashes it too
  5. switch(select((($@CurrentEvent > 0)?":":" ~ Join event...:":":")+ something is wrong with that line. If you press it, it goes to "Chance of no event?";
  6. can't go out of queue. you need to logout to make it go out of queue
  7. is there a script existing that do this? i could do on sc_start SC_BOSSMAPINFO,600000,0; OnPCLoadMapEvent: but imagine the server load for it if i had to have loadevent on all maps
  8. i hope i could join your discord too
  9. odd tested it, still has dailysupply on char_reg_num (edit) nvm forgot 1 curly
  10. just for clarification, will this be repeatable every set time?
  11. requesting for all "dailysupply" in char_reg_num to be deleted on all characters every 00:00 server time
  12. query_sql "UPDATE `count` = `count` -- FROM `test`"; i wanted my script to run decrease 1 value until 0 seems im having a had time on scripting this. thanks on future replies
  13. sorry for the late reply. I didn't tested it thoroughly. "setarray .gm,0," should be 0 instead of 1 (1 is for debugging). the problem now once i added your code, they can't redeem even when the code is correct. still the problem of spaces exist if on debug
  14. set @eac, eaclass(); if (BaseLevel < 125) && (!(@eac&EAJL_UPPER)) && (!(@eac&EAJL_THIRD)) && (!(@eac&EAJL_BABY)) { mes "[Event Manager]"; mes "Sorry, Only a level 175 3rd job (transcended) can claim the reward !"; close; } is my condition correct?
  15. Leic

    filtering doram

    sorry for the wrong section. where can i find the JOB_ databases? i will make multiple conditions, however, i cannot find the JOB_ database nvm i got it.
  16. is there a way of filtering doram class? ex. if doram = sorry your a summoner, only humans can do this... if novice(human) then script will continue... it's probably something like the level script... if (BaseLevel < 99) { mes "[Event Manager]"; mes "Sorry, Only a level 99 can do this"; close; } else { <the script> }
  17. mes "[Race-to-99]"; mes "Ohh ! A level 99 !!"; next; mes "[Race-to-175]"; mes "Let me check if your qualified to get the reward.."; next; getitem 4047,1; getitem 4054,1; getitem 4174,1; ++$ItemGive; getreward = 1; close; announce "Congratulations! "+strcharinfo(0)+" has claimed his reward for Race to 99 Event !", bc_all; sleep 2000; announce "There are "+(100 - $ItemGive)+" rewards left to give!", bc_all; end; problem now is this. when i use close; it doesn't run the announce. then if i remove the close, the message box is just stuck.
  18. mes "[Race-to-99]"; mes "Ohh ! A level 99 !!"; next; mes "[Race-to-175]"; mes "Let me check if your qualified to get the reward.."; next; getitem 4047,1; getitem 4054,1; getitem 4174,1; ++$ItemGive; getreward = 1; close; announce "Congratulations! "+strcharinfo(0)+" has claimed his reward for Race to 99 Event !", bc_all; sleep 2000; announce "There are "+(100 - $ItemGive)+" rewards left to give!", bc_all; end; problem now is this. when i use close; it doesn't run the announce. then if i remove the close, the message box is just stuck.
  19. another question. i cannot find the $ItemGive where can i find it?
  20. some problem with the announce line and if lv98 is taking the reward, it's telling all items has been taken. strcharinfo{0} was in bracket still the problem is when im lvl 98, still saying all items has been redeemed added <=99 if to fix it. thanks
  21. sorry my bad. it should be globe reg value i think. Once they reach 99. the script checks on how many $maxlevel already took the reward. something like that. if less or equal to 100 value = give reward. Else just a message that he's not eligable to get the rewards. something like onlevelup?
×
×
  • Create New...