Recent content by ToiletMaster

  1. T

    Dynamic Switch Statement with choices

    Hi Emistry, First and foremost, thank you for your reply. The sample that you've provided definitely worked in this case. However, my apologies as  i guess i missed out one part of the explanation. Currently i've drawn a graph on how the dynamic switch was supposed to be like divided by Level...
  2. T

    Dynamic Switch Statement with choices

    Hi there! Would like to know if this is possible? for example, i have these quest ID, let's say 1000,2000,3000 as my quest ID. Firstly, upon talking to the NPC, the npc would provide the choices for him to go through switch(select("accept quest 1000:cancel")){ case 1:setquest...
  3. T

    Browedit 586 doesn't work on windows 8.1?

    Hi there! Would like to confirm if anyone is using browedit 586 on windows 8.1?  I've used 620 without any problems at all, however i do have the issue of having the dark spots which i believe could be solved by using 586, unfortunately it crashes upon configuring the same way i did on 620...
  4. T

    Sample Instancing

    Hi there! Would like to know if there are any easy sample instances that are available for hercules? Currently i'm venturing to know more about instancing however, those that in the wiki are either providing too little information plus checking the existing instances are quite complex (at least...
  5. T

    Unable to use this particular item

    Hi guys, i've created a custom item, however, is it possible to not allow the user to open the Box unless he has completed one of the quest? here's the item that i have so far. {  Id: 20009  AegisName: "Shady_Gift_Box"  Name: "Mr.Shady's Gift Box"  Type: 0  Buy: 500  Sell: 50...
  6. T

    Disguise,Ignore,Attack

    Hi guys, I do have a request is that whether is it possible to have a script that does the following? Disguise the player for a set amount of time. Render the player to be ignored by all monsters Render the player to be unable to attack / use skill on any monsters. so far, i'm able to...
  7. T

    Alternative method to use goto option

    Hi there, imagine i have a script such as this mes "message 1";next;mes "message 2";next;mes "message 3";next;setquest 80000switch(select("case 1","case 2","case 3";)){case 1:mes "case 1";close;case 2:mes "case 2";close;case 3:mes "case 3";close; }  if i want to do a check such as...
  8. T

    Adding item that decreases HP continuously

    Hi there!   I'm trying to add a script into the item that loses 5% max hp every 3 seconds. i seem to have trouble on the script part. I guess it doesn't work the same way as scripts? I've tried itemheal, percentheal, heal to decrease the hp but it doesn't work. here's how i did it. script...
  9. T

    doesn't show the right status

    Hi Guys, I got a pretty simple script down here, currently my main quest ID is 80003 and the problem now is, the quest status doesn't show the right one. it works for the matthias#tutorial script though. Example once im done with the quest with 80003 == 2, the 2nd npc doesn't show complete but...
  10. T

    Other People can't connect

    Hi guys, i've hosted an online server quite a number of times, but I just can't seem figure this one out. Here's the main issue, my friend can't seem to connect to the server. Please note that I'm able to connect the server without any issues at all. However for my friend apparently, it shows...
  11. T

    Can't seem to find all items in inventory

    Hi guys, currently i have this script   mes ""+.npc_name$+"";      mes "Hi There! How's it going? You got any extra items you'd like to exchange?";      next;      mes ""+.npc_name$+"";      mes "If you'd like to trade all your items, please type in 0 when prompted!"...
  12. T

    atcommand storage issue

    Hi guys, I'm making a simple script but everytime I click on the npc, it shows @Storage Failed. However normally typing @storage works. Here's the script splendide,202,133,4  script  Storage#TreasureBox  1940,{    atcommand "@storage";    end;        } initially I...
  13. T

    Input command on script selectable

    Hi Guys, I understand the logic of changing 1:1 using the input command. example is     while(input(.@novice,1,1000))          {                  mes ""+.npc_name$+"";          mes "Please re-think about your choice. It's not making any sense!";  ...
  14. T

    Shortening this script

    Hi Guys, Here's one part of the script that i made, i was thinking of methods of shortening this, would there be anyway? as the 2nd part of the case is all duplicated except for the item IDs. I'm not really good with arrays, so if someone could provide me an example, I'd be really grateful...
  15. T

    summon monster script

    Hi there guys! Yet another question from me, hope you guys don't mind! This time I'm stuck at something. I've started using setarray as it really simplifies alot of things! However I can't seem to spawn all the monster I wanted for this time. it only summons the first ID that I specified on...
Back
Top