Jump to content

cadz

Members
  • Posts

    243
  • Joined

  • Last visited

Everything posted by cadz

  1. hi is there any solution for this im having a same problem also.
  2. hi anyone can help me how to add waiting room in LMS but to shuffle the players before entering?
  3. cadz

    lvl 99 reward

    hi sir radian thank you so much!
  4. hi anyone can help me to change this to cashpoints rather item? CCTO for the script sir radian // -- A very simple script that made by me (Radian) // -- Compatible with rAthena. // -- I don't mind if you want to optimized this // -- just please include me on the credits prontera,35,270,6 script LvL 99 Reward 864,{ if ( .enable_event ) { if ( getcharid(3) > .aid_end ) { mes "[ ^777777Account ID Checker^000000 ]"; mes "I'm sorry you are late to avail this.."; close; } if ( getcharid(3) < .aid_start ) { mes "[ ^777777Account ID Checker^000000 ]"; mes "It's impossible you are below of the id we required to obtained the special event rewards."; close; } if ( BaseLevel < .max_base_level || JobLevel < .max_job_level ) { mes "[ ^00FF00Race Up to Max^000000 ]"; mes "We're sorry you are not qualified yet on this event, please come back when you are base level is "+.max_base_level+" and job level is "+.max_job_level+"."; close; } if ( #Reward == 1 ) { mes "[ ^FF0000Baj^000000 ]"; mes "We apologize that you are not qualified any more to receive or get a special reward from us."; close; } mes "[ ^0000FFCongratulation Note^000000 ]"; mes "We verified that you are qualified and will receive a reward from us."; for ( .@i = 0; .@i < getarraysize(.reward); .@i++ ) for ( .@i = 0; .@i < getarraysize(.amount); .@i++ ) getitem .reward[.@i],.amount[.@i]; set #Reward, 1; announce "Congratulations! "+strcharinfo(0)+" has claimed his reward for Race to 99 Event This event runs until April 4 2021", bc_all; close; OnInit: // ------------------------------------------------------------ \\ .enable_event = 1; // Set 0 = Disable / 1 = Enable Default. .max_base_level = 99; // Set the maximum base level here. .max_job_level = 70; // Set the maximum job level here. .aid_start = 0; // Set the Account ID here where you want to start. [ set this to 0 = disable ] .aid_end = 0; // Set the ending Account ID here. [ set this to 0 = disable ] setarray .reward,20737,12210,14002,6316,12211; // Set the rewards here. setarray .amount,1,5,10,10,10; // Set the reward amouns here. waitingroom "99 Reward",0; // Waiting Room. // ------------------------------------------------------------- \\ end; } }
  5. thanks i fixed it already changing different points thank you MR L for replying
  6. hi secret is this the answer from my problem? i having a problem in my currency if this is the answer i would love to buy it.
  7. hi im having a problem from hourly points and free cash shop in cash shop when i buy in the npc for (hourly points) it will reduce but when after 1 hour the points will return and added more example: i got 10 kafra points i buy the 5 points in the free kafra shop then it will deduct the 5 points after 1 hour the hourly will announce it will give you back the points of total of 10 again +5 coz of hourly hourly points npc free cash shop i found out that when i buy the item in npc hourly points the free cash shop here does not reduced. when i change char to reconnect that time it will reduced. thank you in advance btw there's no error in map.exe
  8. hi can you help me? it doesn't remove the item and bugged when i put 0 its still go exchange if i put 1000 but i got only 500 he still give me 1000 - script Board Lady -1,{ mes "[ Board Lady]"; mes "Hi ther adventurer"; mes "do you have board tickets?"; mes "i can convert it to kafra Points"; mes "so you can buy at the free cash shop NPC"; next; mes "[Board Lady]"; mes "^009900 1 ticket = 1 kafra Points"; mes "do you want to continue?"; if(select("yes:no")== 1) { goto ckafra; end; } else { goto czeny; end; } ckafra: next; mes "Input Coupon Amount"; input .@ckafra; next; set .@kafratotal, .@ckafra*1; mes "Converting "+.@ckafra+" Board Quest Ticket to "+.@kafratotal+" kafra points, continue?"; if(select("No:Yes")==1) { close; } next; mes "Done!"; delitem .couponid, .@ckafra; set #KAFRAPOINTS,#KAFRAPOINTS+.@kafratotal; dispbottom "========================================="; dispbottom "Convert: You converted "+.@ckafra+" Board Quest Ticket to "+.@kafratotal+" Kafra Points."; dispbottom "You now have "+#KAFRAPOINTS+" Kafra Points"; dispbottom "========================================="; close; czeny: next; mes "thank you come again"; close; OnInit: set .couponid, 7338; end; } // -------------------------------------------------- // Duplicates: // -------------------------------------------------- prontera,124,82,2 duplicate(Board Lady) Board Lady#prt 646 alberta,33,240,5 duplicate(Board Lady) Board Lady#alb 646 izlude,134,94,5 duplicate(Board Lady) Board Lady#iz 646 morocc,164,97,5 duplicate(Board Lady) Board Lady#moc 646 payon,166,101,5 duplicate(Board Lady) Board Lady#pay 646 lighthalzen,162,100,5 duplicate(Board Lady) Board Lady#light 646 rachel,136,106,5 duplicate(Board Lady) Board Lady#rach 646 veins,224,125,5 duplicate(Board Lady) Board Lady#vein 646
  9. alright i fix it. kindly close this thread thanks! ?
  10. hi anyone can help me put an amount on this script i found master emistry script but i can't apply adding amount before the exchange i put the input amount but nothing happens even no error on the script .thanks in advance. prontera,146,107,5 script Board Lady 646,{ .@item = 7339; .@rate = 1; mes "[ Board Lady] mes "Hi ther adventurer"; mes "do you have board tickets?"; mes "i can convert it to kafra points"; mes "so you can buy at the free cash shop NPC"; next; mes "[ Board Lady] mes "^009900 1 ticket = 1 kafra points"; mes "How many Board Quest Ticket do you have?"; next; input .@amount; if (.@amount == 0) { mes .NPC$; mes "Umm, please enter your amount!"; close; } .@amount2 = (.@amount * .ID); if (.@amount > .@amount2) { mes .NPC$; mes "You dont' have enough ticket!!!"; close; } if (.@amount2 == 0){ mes .NPC$; mes "You don't have ticket!!"; close; } .@countitem = countitem( .@item ); mes "Exchange "+.@countitem+" x "+getitemname( .@item )+" to "+( .@countitem * .@rate )+" Point ?"; if( .@countitem ) if( select( "YES","Cancel" ) == 1 ){ delitem .@item,.@countitem; #KAFRAPOINTS = #KAFRAPOINTS + ( .@countitem * .@rate ); mes "Done"; } close; }
  11. thank you so much! can you send me those script guides in db so i can learn more.
  12. the script is from a headgear if he equip + 9 weapon it will trigger +1aspd but its not when i refine the headgear to + 9 it trigger the aspd, the weapon should do the trigger of aspd not the headgear.
  13. hi how to fix this for example my hat added description if you wear +9 weapon aspd +1? .@r = getrefine(); if (.@r>=9) { bonus bAspd,1; }
  14. already did i put the 192.x.x.x ip already
  15. im using now lan ip 192.x.x.x still the same
  16. im using only for offline sir kelangan po ba? already did open those ports same p din sir e bkt kaya walang error pero hindi nakakapasok
  17. here is the clientinfo 127.0.0.1 right? for offline?
  18. pa help naman po how to fix this wala kasing error ayaw pumasok hanggang login server lng
  19. hi good day anyone can help me on this not a single error cant connect in map server and char server. im using 2015-11-04aRagexe_patched.
  20. cadz

    request script

    hi im using eamod here is the script Crystilia,56,88,6 script Reset Girl 408,{ mes "[Reset Girl]"; mes "I am a Reset Girl."; mes "Reset Stats: 1,000,000z"; mes "Reset Skills: 1,000,000z"; mes "Hatred & Feeling Reset: 5,000,000z"; mes "Reset Both: 1,500,000z"; mes "Please select the service you want:"; next; switch(select("Reset Skills:Reset Stats:Reset Both:Hatred & Feeling Reset:Quit")) { case 1: mes "[Reset Girl]"; if (Zeny < 1000000) { mes "Sorry, you don't have enough Zeny."; close; } mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; set Zeny,zeny-1000000; ResetSkill; close; case 2: mes "[Reset Girl]"; if (Zeny < 1000000) { mes "Sorry, you don't have enough Zeny."; close; } mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; set Zeny,zeny-1000000; ResetStatus; close; case 3: mes "[Reset Girl]"; if (Zeny < 1500000) { mes "Sorry, you don't have enough Zeny."; close; } mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; set Zeny,zeny-1500000; ResetSkill; ResetStatus; close; case 4: mes "[Reset Girl]"; if (Zeny < 5000000) { dispbottom "Sorry you dont have enough zeny to reset."; close; } if( BaseClass == Job_Star_Gladiator ) { dispbottom "You are not a Gladiator Job."; close; } atcommand "@feelreset"; atcommand "@hatredreset"; set Zeny,zeny-5000000; mes "Done"; close; case 5: close; } } i just want to add free reset for level 50 below
  21. hi is there anyone can help me how to add script in default stats resetter if your level 50 below free stats and skill reset thanks in advance
×
×
  • Create New...