Jump to content

Aisha

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by Aisha

  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.
  15. I'm not sure you can stop the item from being consumed. You can try this one instead. 501,Red_Potion,Red Potion,11,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ if(countitem(512) > 0){ callfunc "CustomBox",501,512; } end; },{},{} Let me know if it still consumes upon use even without a key. If it does not, good, then check if when you have a key and you consume it, does the item(box) go away. As for your second question, that is correct, try to use that format and try to see if you can still get the "null" result.
  16. Try removing the - 1 from the getarraysize section. Also, to make more, yes you'd have to just copy what I've made above, just make sure to make them distinguishable and unique. And to your last question, that is correct, just change those variables to the one you created. Also, another good thing is that these are temporary variables so everytime they finish executing, they are free'd so you won't be using memory as much as when you're using permanent ones, but that is just trivial, but is key if you want to save memory.
  17. Thanks, this is good enough, thank you. I will share the script I make out of this in a form of showcase soon. As a follow up question. What is the most efficient way of checking mob HP. Would a timer suffice? Sleep perhaps? OnClock or something similar, or a do..while loop wherein the condition is if the mob is still alive? For instance, I only wish to check the hp of the monster every 30 minutes, would a do-while loop be better, or would an OnClock/OnTimer be better?
  18. What you have been using was "4" on the item script. 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus3 bAutoSpell,378,1,40; } },{},{} 4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ skill "LK_BERSERK",1; bonus bMaxHPrate,-50; } },{},{} 4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus bUnbreakableWeapon,0; bonus bBreakWeaponRate,20; bonus bBreakArmorRate,20; bonus3 bAutoSpell,"WS_OVERTHRUSTMAX",1,140; bonus3 bAutoSpell,"MC_MAMMONITE",10,200; } },{},{} 4363,B_Magaleta_Card,High Priest Card,6,20,,10,,,,,,,,136,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",4,70,0; } },{},{} 4365,B_Katrinn_Card,High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus bIntravision,0; } },{},{} 4367,B_Shecil_Card,Sniper Card,6,20,,10,,,,,,,,2,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus bPerfectHitAddRate,100; } },{},{} 4236,Amon_Ra_Card,Amon Ra Card,6,20,,10,,,,,,,,64,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus bAllStats,1; if(!isequippedcnt(4363)){ bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); } } },{},{} 4407,Randgris_Card,Randgris Card,6,20,,10,,,,,,,,2,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus bUnbreakableWeapon,0; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; } },{},{} 4399,Thanatos_Card,Memory of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ if( isequippedcnt( 4359,4357,4361,4365,4367,4236,4407,4399 ) <= 2 ){ bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; } },{},{} 4276,Lord_Of_Death_Card,Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ if( Class == 4009 || 4031){ bonus3 bAutoSpell,"HW_MAGICCRASHER",1,25; } bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; bonus2 bComaClass,Class_Normal,1; },{},{}
  19. Hi, can you tell me where you manage to get this variable? .GID = $@mobid[0]; Thank you for your reply.
  20. I am trying to have a "max hp" of mob and "current hp" of mob, does anyone have any idea how to get current hp of mob? I can only see getmonsterinfo but is not gonna work since it only look max hp **Fixed "title" to be more informative
  21. You don't need a function for this. Will post when I get home.
  22. Do you mean when you use @evilclone command? As said above, better use the script command.
  23. Check your import folder for duplicate of old red box. Also before you make the code run, be sure to reloaditemdb and reloadscript afterward in that order. I will give you code later make it very easy to config, with instruction also. When I get home in maybe 2 hours. I will try put as much info as possible so you can learn how to do it also in the future, or maybe even improve it. Good luck. Edit: Note: This might not be working 100% because I had no time to test it, feel free to message me or reply to this topic for support. Hope this helps. And i've added as much information I could put to make it easily configurable, it might look ugly and dirty, but it should work, hopefully. DB: 501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "CustomBox",501,512; },{},{} Script: function script CustomBox { //start of settings //amount and chances .@req_amt = 1; //change to how many items is needed to open .@good_chance = 10; //10 = 10% .@best_chance = 1; //1 = 1% .@announce = 1; //change to 0 if you want to turn off or 1 to turn on announce //arrays setarray .@rew_basic,501,502,503,504,505; //your reward items id [basic] setarray .@rew_good,501,502,503,504,505; //your reward items id [good] setarray .@rew_best,501,502,503,504,505; //your reward items id [best] setarray .@rew_amt_basic,1,2,3,4,5; //your reward amount [basic] setarray .@rew_amt_good,1,2,3,4,5; //your reward amount [good] setarray .@rew_amt_best,1,2,3,4,5; //your reward amount [best /* Note #1: This can still be simplified into a more compact snippet, but for sake of basicness, i will not make it into that */ /* Note #2: Make sure your amount and rewards match, if you have 5 items in the reward category, make sure you have 5 amounts in your amount category too */ //size of arrays .@basic_size = getarraysize(.@rew_basic) - 1; .@good_size = getarraysize(.@rew_good) - 1; .@best_size = getarraysize(.@rew_best) - 1; /* Note: Why we do this is because we want subtract one value from the output of getarraysize, because our array index starts at 0 (we did not specify it to start at 1)*/ //end of settings 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; } .@rand = rand(0,100); //randomize chance to get rewards above delitem getarg(1),.@req_amt; //required item is deleted before giving out rewards if(.@rand <= .@best_chance){ //this produces the "best" items .@item = rand(0,.@best_size); //item is randomly chosen from the list if(.@announce) //if announce is active or 1, will announce announce "Congratulations! "+strcharinfo(0)+" has won "+getitemname(.@item)+" from opening a [ "+getitemname(getarg(0))+" ] !!",0; getitem .@rew_best[.@item],.@rew_amt_best[.@item]; end; } if(.@rand <= .@good_chance){ //since we already catch anything that is either 1 or 0 above, no need to add check for <= 1 .@item = rand(0,.@good_size); //item is randomly chosen from the list if(.@announce) //if announce is active or 1, will announce announce "Congratulations! "+strcharinfo(0)+" has won "+getitemname(.@item)+" from opening a [ "+getitemname(getarg(0))+" ] !!",0; getitem .@rew_good[.@item],.@rew_amt_good[.@item]; end; } //they get basic reward .@item = rand(0,.@basic_size); //item is randomly chosen from the list if(.@announce) //if announce is active or 1, will announce announce "Congratulations! "+strcharinfo(0)+" has won "+getitemname(.@item)+" from opening a [ "+getitemname(getarg(0))+" ] !!",0; getitem .@rew_basic[.@item],.@rew_amt_basic[.@item]; end; }
  24. I know a little about rA coding and etc, and i want to learn more. Can someone show me how to record each party member's respective class ID, into maybe an array? Or anything as long as you can access it again later in the script. Thank you, and this will server as my base for my script, you can make the example as simple as you can, no need to elaborate, i just need to know how you initiate the checking and saving of the class IDs thanks
×
×
  • Create New...