Jump to content

Aisha

Members
  • Posts

    27
  • Joined

  • Last visited

Profile Information

  • Gender
    Female
  • Location
    Orvelia
  • Discord: Aisha#5153

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Aisha's Achievements

Poring

Poring (1/15)

2

Reputation

  1. What I wanted to do was attach players into a script inside the instance, yes the npc is inside the instance.
  2. Lazy version rewarder lol - script Rewards -1,{ if($rewards >= 50){ mes "50 winners already"; close; } if(BaseLevel < 99){ mes "not 99"; close; } mes "congratulations"; getitem 501,1; $rewards += 1; close; }
  3. *addrid(<type>{,<flag>{,<parameters>}}); This command will attach other RIDs to the current script without detaching the invoking RID. It returns 1 if successful and 0 upon failure. <type> determines what RIDs are attached: 0: All players in the server. 1: All players in the map of the invoking player, or the invoking NPC if no player is attached. 2: Party members of a specified party ID. [ Parameters: <party id> ] 3: Guild members of a specified guild ID. [ Parameters: <guild id> ] 4: All players in a specified area of the map of the invoking player (or NPC). [ Parameters: <x0>,<y0>,<x1>,<y1> ] 5: All players in the map. [ Parameters: "<map name>" ] Account ID: If type is Account ID, attach the specified account ID. So I would like to ask, does the number 5 type accept instanced map names? For example, players are inside an instance, and I would like to attach every single one of them onto a certain event script, would addrid(5) do the trick, or is there anything else to add? Perhaps: addrid(5,instance_mapname("prontera")); Or would addrid(1); also work? Additionally, regarding the 4th type, can somebody show me an example of how it works? Because I am kind of confused on how to use it. Thank you.
  4. Well, I have to figure out what's causing the issue, because looking at it, I don't really see why it would fail this check. if(getarg(1) < 1){ //if required amount is less than 1, warning will pop up and consumed item will be returned message strcharinfo(0),"You require [ "+getitemname(getarg(1))+" ] x"+.@req_amt+" to open this item."; getitem 501,1; end; }
  5. Can you check the console for errors? It should give back the item when consuming without the proper key.
  6. Then there really isn't any other way to fix it (not that I know of). The item is given back though if you use it without a key, so it should be okay?
  7. I tested the fixed one, it gave me an error on my compile, all I did was add the fixed line.
  8. 4403,Kiel_Card,Kiel-D-01 Card,6,20,,10,,,,,,,,769,,,,,{ if(isequippedcnt(4403) == 1){bonus bDelayRate,-30;} },{ if(isequippedcnt(4403) > 1){ message strcharinfo(0),"You can only equip 1x "+getitemname(4403)+"! Additional card(s) has been disabled."; } },{} What this does: Effect only activates if there is one card equipped. If more than one card is equipped, a notice will pop up for the user notifying them that other cards will have no effect. Note: Please test, this is untested. Also to anyone who is better at coding than me, please enlighten us if this would work or not xD
  9. Thanks, I found a more efficient way of doing it. Thanks for the reply.
  10. If you attach a script to bosses, it should be do-able.
  11. Not quite sure what I am doing wrong here, but this seems to not function. bonus5 bAddEffOnSkill,"AS_CLOAKING",Eff_Bleeding,10000,ATF_SELF,700000; Its should be that whenever cloaking is activated, Bleeding is applied to self. Adds a n/100% chance to cause status eff for t milliseconds on the target when using skill sk atf is the trigger criteria: ATF_SELF = trigger effect on self ATF_TARGET = trigger effect on target
  12. I was hoping to save the HP information every 30 minutes or maybe every hour as long as the monster is alive. So I think it is best to have OnClock then? Because I am not sure as to how initnpctimer and stopnpcimer works, it say "pause" the time, so if I stop at one time, and resume at the other, it will resume at the previous timer correct, not back to 0 time?
  13. Thanks! I understand how it works now. I will try to see if I can make the NPC work, if not, might post progress here and ask for assistance.
  14. On the last portion, that is the first time I am seeing set being used like that. I will have to read up on it. Though if you can explain what it is doing, would appreciate it. Because from what I can understand, it is counting its own array size, but I am not sure as to where the array itself is initialized, or is that the part where info is being added? Sorry, a bit confused by your example.
×
×
  • Create New...