-
Posts
120 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by NakedWolf
-
@Kuroe please check your src/map/skill.cpp and see if you have copy pasted it properly
-
i think its at src/map/vending.cpp crtl+f type : battle_config.autotrade_monsterignore and u should find it but when i tried to compile server i got error u try and let me know if it worked for u if am wrong please correct me thank you.
-
help me pls why im add vip but it show 600 %
NakedWolf replied to rakmomteesud's question in General Support
rathena\conf\battle\player.conf //=================================== // VIP system //=================================== // Storage slot increase. Setting to 0 will disable. // Give more storage slots above the MIN_STORAGE limit. // Note: MIN_STORAGE + vip_storage_increase cannot exceed MAX_STORAGE. // Default: 300 vip_storage_increase: 300 // Base experience rate increase. Setting to 0 will disable. (Note 2) // Default: 50 vip_base_exp_increase: 50 // Job experience rate increase. Setting to 0 will disable. (Note 2) // Default: 50 vip_job_exp_increase: 50 // Experience penalty rate multiplier for VIP accounts. // Default: 100 (100 = 1% penalty) vip_exp_penalty_base: 0 vip_exp_penalty_job: 0 // Zeny penalty for VIP accounts. // Zeny loss only happens if the player dies from another player. // Default: 0 (100 = 1% penalty) vip_zeny_penalty: 0 // Battle Manual experience increase. Setting to 0 will disable. // - Regular/Thick Battle Manual: 50+(50/X) = 75% // - HE Battle Manual: 100+(100/X) = 150% // - Battle Manual x3: 200+(200/X) = 300% // Note: X is the config value. // Default: 2 vip_bm_increase: 2 // Item drop increase. Setting to 0 will disable. // Note: 50 = 50% item_drop increase. // For item_rate = 200: 200 * 50 / 100 = 100 bonus rate added to the 200 base giving total rate of 300. // Default: 50 vip_drop_increase: 50 // Gemstone requirement. // Can the VIP Group ignore Gemstone requirement for skills? // 0 = Disable // 1 = Behave like Mistress Card // 2 = Remove all gemstone requirements (default) vip_gemstone: 2 // Will display rate information (EXP, Drop, and Death penalty message)? (Note 1) vip_disp_rate: yes did u try to check this. -
Nidhoggur's Nest with out doing quest
NakedWolf replied to NakedWolf's question in Scripting Support
thank you.. @Haruka Mayumi it solved the my request -
can some one edit this script in a way that player with party can just talk to the gatekeeper and activate the instance with out undergoing any process. like player with his party member warps to the gate keeper and the party leader talks and activates the dungeon and they warp in it would will be really help full. Thank you. NydhoggsNest.txt
-
Chris' Script Collection [Last Update: 04-06/2021]
NakedWolf replied to llchrisll's topic in Script Collections
-
Chris' Script Collection [Last Update: 04-06/2021]
NakedWolf replied to llchrisll's topic in Script Collections
i tried using the GoldRoom PVP 1.1v //===== rAthena Script ======================================= //= Gold Room Battle //===== By =================================================== //= llchrisll //===== Version ============================================== //= 1.0 - Initial Version //= 1.1 - Fixed bugs and tested // Exchanged "atcommand @cleanmap" with script command "cleanmap" //===== Tested With ========================================= //= rAthena SQL 07/16-2017 Revision //===== Description ========================================== //= A battle over an gold room, which occures on every ".delay" days. // Players can visit their gold room for ".dur" minutes, there is no delay restriction. // See 'OnInit' for config. //===== Comments ============================================= //= Request by Paulinds // http://rathena.org/board/topic/59504-list-of-my-script-request/ //============================================================ prontera,164,172,4 script Gold Room Battle 100,{ mes .n$; mes "Hello,"+ strcharinfo(0)+"."; mes "How may I help you?"; if(getgmlevel() > .gm) if(select("- GM Menu:- Player Menu") - 2) goto GM_M; mes "Do you need information about the access to the Gold Room or about the Gold Room Battle?"; if(.timer == .delay) mes "Or do you want to participate?"; mes "The next battle will be in "+ (.delay-.timer) +" day(s)."; next; switch(select("- "+( ($gold_acc == getcharid(3))?"Warp to Gold Room":"Ownership")+":- "+( (.GRB_Room == 1)?"Battle!!!":"Room Closed")+":- Information:- Nevermind") ) { case 1: mes .n$; if($gold_acc && ($gold_acc == getcharid(3)) ) { mes "Do you want to enter the Gold Room?"; mes "^FF0000Note: You'll be automatically warped back to your Save Point after "+.dur+" minutes.^000000"; if(select("- Yes:- No") - 1) close; next; mes .n$; mes "Okay, here we go."; close2; warp .gold$,.gold_x,.gold_y; sleep2( .dur*60*1000 ); // Minutes*60 > Seconds*1000 = Milliseconds required for sleep2 doevent strnpcinfo(0)+"::OnDone"; } else if($gold_acc != getcharid(3)) mes "The current owner is ^00FF00"+$gold_n$+"^000000."; break; case 2: mes .n$; if(!.GRB_Room) { mes "I'm sorry, but the battle isn't open yet."; close; } if(getmapusers(.pvp$) >= .limit) { mes "I'm sorry, but the limit of "+.limit+" player has been reached."; close; } mes "Do you want to join the Gold Room Battle?"; if(select("- Yes:- No") - 1) close; next; mes .n$; mes "I will warp you now to the battlefield."; close2; warp .pvp$,0,0; set @gold,1; sleep2 2000; if(getmapusers(.pvp$) == .limit) doevent strnpcinfo(0)+"::OnBattleStart"; break; case 3: mes .n$; mes "[ === Battle === ]"; mes "The Gold Room Battle is, like the name says, an pvp-type event where the last one to survive will be rewarded with access to his/her own Gold Room until the next battle."; mes "The whole event has a max duration of "+.min+" minutes."; mes "There can up to "+.limit+" players to battle with an registration time of 3 minutes."; mes "The next battle is in "+.delay +" days after the last one."; mes " "; mes "[ === Gold Room === ]"; mes "The winner of an battle can visit his/her gold room in this "+.delay+" days for "+.dur+" minutes and always."; mes "That means there are no restrictions in usage."; break; case 4: break; } end; GM_M: next; mes .n$; mes "What now?"; if(select("- Start/Stop Event:- Nevermind") - 1) close; next; if(.GRB_Eve) doevent strnpcinfo(0)+"::OnDisable"; else doevent strnpcinfo(0)+"::OnPrepare"; mes .n$; mes "The event has turned "+ ( (.GRB_Eve)?"off":"on")+"."; close; OnPCLogoutEvent: if(getcharid(3) != $gold_acc) end; OnDone: cleanmap .gold$,88,111,168,191; warp "SavePoint",0,0; end; OnPCLoadMapEvent: if( (strcharinfo(3) == .pvp$ && !@gold) || (strcharinfo(3) == .gold$ && getcharid(3) != $gold_acc) ) { dispbottom .n$+": I'll warp you back to your savepoint because either you tried to join the battle, though you didn't register first or you tried to visit the gold room of another player."; warp "SavePoint",0,0; end; } while(getmapusers(.gold$) != 0) { makeitem 969,1,.gold$,rand(88,111),rand(168,191); sleep2 1000; } cleanmap .gold$,88,111,168,191; end; OnPrepare: set .timer,.delay*60*24; OnMinute00: set .timer,.timer + 1; if( (.timer/60)/24 >= .delay) { if(getmapusers(.pvp$) > 0) { mapannounce .pvp$,.n$+": I will warp you all back to prontera, because I need this map for the Gold Room Battle.",bc_all; sleep 5000; mapwarp .pvp$,"prontera",150,180; } set .timer,0; set $gold_acc,0; announce .n$+": The gold room battle will begin shortly!!!",bc_all; sleep 10000; announce .n$+": You have 3 minutes to register, which starts now!!!",bc_all; initnpctimer; set .GRB_Eve,1; set .GRB_Room,1; if(getmapflag(.pvp$,mf_gvg) == 1) { set .gvg,1; removemapflag .pvp$,mf_gvg; } if(getmapflag(.pvp$,mf_pvp) == 1) { set .pvp,1; pvpoff .pvp$; } while(.GRB_Room) { waitingroom "Current Fighters: "+getmapusers(.pvp$),0; sleep 2000; delwaitingroom; } } end; OnTimer120000: // 2 Minutes announce .n$+": Hurry guys, 1 minute left!!!!",bc_all; end; Ontimer180000: // 3 Minutes OnBattleStart: stopnpctimer; set .GRB_Room,0; announce .n$+": Registration closed, let's see how many have registered....",bc_all; sleep 10000; if(getmapusers(.pvp$) < 2) { announce .n$+": It seems like there are not enough players to start the battle.",bc_all; goto OnDisable; } setmapflag .pvp$,mf_noreturn; setmapflag .pvp$,mf_nowarpto; setmapflag .pvp$,mf_nowarp; setmapflag .pvp$,mf_noteleport; setmapflag .pvp$,mf_nosave; setmapflag .pvp$,mf_nomemo; setmapflag .pvp$,mf_partylock; setmapflag .pvp$,mf_pvp_noparty; setmapflag .pvp$,mf_pvp_noguild; setmapflag .pvp$,mf_loadevent; announce .n$+": There are "+getmapusers(.pvp$)+" players registered.",bc_all; sleep 5000; announce .n$+": I will start the battle in 10 seconds!! Particpants, prepare yourself!! I also wish you good luck all!!",bc_all; sleep 5000; mapannounce .pvp$,.n$+": 5 seconds left!!!",bc_all; sleep 1000; mapannounce .pvp$,.n$+": 4 seconds left!!!",bc_all; sleep 1000; mapannounce .pvp$,.n$+": 3 seconds left!!!",bc_all; sleep 1000; mapannounce .pvp$,.n$+": 2 seconds left!!!",bc_all; sleep 1000; mapannounce .pvp$,.n$+": 1 seconds left!!!",bc_all; sleep 1000; mapannounce .pvp$,.n$+": GO !!!!",bc_all; pvpon .pvp$; startnpctimer; set .t_ck,0; // Timer Check end; OnTimer360000: // 3 Min = 180 seconds (Registration Time) + each min = 60 seconds > 360000 milliseconds stopnpctimer; set .t_ck,.t_ck + 1; if(.t_ck == .min/2) { mapannounce .pvp$,.n$+": "+.min/2+" minutes have passed!!",bc_all; if(getmapusers(.pvp$) == 0) { sleep 10000; mapannounce .pvp$,.n$+": Huh?! Where did the players disappear to? Since there are none, I will end the battle.",bc_all; goto OnDisable; } } else if(.t_ck == .min) { mapannounce .pvp$,.n$+": "+.min+" minutes have passed!! Since no one has won this battle, I will end this battle!!",bc_all; goto OnDisable; } setnpctimer 180100; // Reseting the timer back to after the registration time has passed startnpctimer; end; OnDisable: set .GRB_Room,0; delwaitingroom; removemapflag .pvp$,mf_noreturn; removemapflag .pvp$,mf_nowarpto; removemapflag .pvp$,mf_nowarp; removemapflag .pvp$,mf_noteleport; removemapflag .pvp$,mf_nosave; removemapflag .pvp$,mf_nomemo; removemapflag .pvp$,mf_partylock; removemapflag .pvp$,mf_pvp_noparty; removemapflag .pvp$,mf_pvp_noguild; removemapflag .pvp$,mf_loadevent; if(.gvg) { set .gvg,0; setmapflag .pvp$,mf_gvg; } if(!.pvp) pvpoff .pvp$; else set .pvp,0; announce .n$+": The event, Gold Room Battle, has ended!!!",bc_all; mapannounce .pvp$,.n$+": You all will be warped in 10 seconds back to prontera.",bc_all; sleep 10000; mapwarp .pvp$,"prontera.gat",150,180; set .GRB_Eve,0; end; OnPCKillEvent: if(strcharinfo(3) != .pvp$ || !@gold ) end; mapannounce .pvp$,.n$+": "+strcharinfo(0)+" has killed "+rid2name(killedrid)+"!!",bc_all; end; OnPCDieEvent: if(strcharinfo(3) != .pvp$ || !@gold ) end; if(killerrid != getcharid(3)) dispbottom .n$+": You have been killed by "+rid2name(killerrid)+"!!"; set @gold,0; sleep2 500; warp "SavePoint",0,0; sleep2 1500; // Slowing down the script if(HP == 0) atcommand "@alive"; percentheal 50,50; if(getmapusers(.pvp$) == 2) mapannounce .pvp$,.n$+": Wuhu!! Only 2 players remain, let's see who is the better player!!",bc_all; else if(getmapusers(.pvp$) == 1) { announce .n$+": The winner of the Gold Room Battle is "+ rid2name(killerrid)+".",bc_all; set $gold_acc,killerrid; // Saving RID of the winner set $gold_n$,rid2name($gold_acc); detachrid; if(attachrid($gold_acc) == 1) dispbottom .n$+": You have won the Gold Room Battle, if you want to enter your Gold Room, please talk to me."; goto OnDisable; } else if(getmapusers(.pvp$) == 0) goto OnDisable; end; OnInit: set .n$,"["+strnpcinfo(1)+"]"; // NPC Name set .limit,10; // Max Players set .min,15; // Battle Duration set .pvp$,"guild_vs5"; // Map for the PvP Room set .gold$,"new_zone04"; // Map for the Gold Room set .gold_x,100; // X Coordinate for the Gold Room where to be warped to set .gold_y,181; // Y Coordinate for the Gold Room where to be warped to // If the PvP Map is not the same as the Gold Room Map, // use special mapflags and sets variable to disinguish set .diff,0; if(.pvp$ != .gold$) { setmapflag .gold$,mf_noreturn; setmapflag .gold$,mf_nowarp; setmapflag .gold$,mf_nomemo; setmapflag .gold$,mf_nosave; setmapflag .gold$,mf_nowarpto; setmapflag .gold$,mf_noteleport; setmapflag .gold$,mf_loadevent; set .diff,1; } set .delay,2; // Delay in days in which interval the battle will be hold. set .dur,1;// Gold Room Visit in minutes end; } and i found a error on my console how to fix this error. and how to make this event happen every 2 hours. -
@AinsLord FOR EXAMPLE: diff --git a/conf/battle/feature.conf b/conf/battle/feature.conf index cf26b9b..8bc79ac 100644 --- a/conf/battle/feature.conf +++ b/conf/battle/feature.conf @@ -78,3 +78,27 @@ feature.attendance: off // Private Airship System (Note 1) // Requires: 2018-03-21aRagexeRE or later feature.privateairship: off + +// Extended Vending System [Lilith] +// Enable or disable extended vending system? (Note 1) +extended_vending: on + +// Enable show broadcas info when player click vending board (Note 1) +show_broadcas_info: on + +// Show currency's name in vending board? (Note 1) +show_item_vending: on + +// Show more info about buying? (Note 1) +ex_vending_info: on + +// Easycore Feature +// Send a Vending Report to mailbox/rodex vendor? (Note 1) +// Set the variable 'NOVREPORT' for avoid mails to a player +ex_vending_report: on + +// Item ID for Zeny. Set to 0 if you don't want use Zeny. +item_zeny: 30000 + +// Item ID for Cash. Set to 0 if you don't want use Cash. +item_cash: 30001 diff --git a/conf/battle/feature.conf b/conf/battle/feature.conf do you see thin line on the top. you will find this on about each paragraph. ex: find that file in your trunk >conf/battle/feature and + mean add line start given with + at front for EXAMPLE: feature.privateairship: off + +// Extended Vending System [Lilith] +// Enable or disable extended vending system? (Note 1) fine the line feature.privateairship: off " below the line add " // Extended Vending System [Lilith] (dont forget to remove the plus at front). // Enable or disable extended vending system? (Note 1) - means delete the line which already exists there ------------------------------------------- note: if your using a old rAthena trunk you wont fine cpp or hpp u will find only cp and hp i think this should help you understand how to do it thank you.
-
Do you have an warnings when you compile or any console errors or warning ?
-
Video unavilable
-
What do you mean by store could you provide some screenshots ?
-
Ar you gonna release it ?? ?
-
Welcome, have a geart day.
-
sir i have already tried to replace them with my website still no difference sir sir i doubt its msgstringtable.txt because i even tried to replace the files from a different.grf but i dint make any difference buy when i copied the .exe file to old kro which i had it worked fine,so its confirmed that its a file from client side kro which make this above incident which i mentioned, if any one know the exact file name to edit it please let me know it will really help full thank you so much.... msgstringtable.txt docent have any Chinese character. bumb Thank you its solved by changing the language type in clieintinfo.xml from 0 to 1
-
hello,sir/madam am using 2015-11-04aRagexe and i have diffed with recommended NEMO diff as well i just noticed today when i try to enter incorrect password 3 time or more it displays a message in Chinese letters and then it minimizes the client and lead to a website ragnarok.co.kr how do i stop this from happening ??? is there possible way to redirect the webpage . or disable it. THANK YOU SO MUCH
-
1st problem: you need to add item description in client silde folder. System/iteminfo.lua
-
Most diff are like this coz of rathena version changes from each ppl i guess and server source edits Use notepad ++ and use option "move to other view so you can do it side by side
-
@Rizta Please provide it I think i can change the dialogs n options If any doubt i will post it here. Thank you.
-
R> Script Unequip equipment condition.
NakedWolf replied to MestreWolf's question in Script Requests
By emistry try this https://rathena.org/board/topic/56757-requesting-for-item-script/ -
hello sir @llchrisll am planing to add some custom random options but for an example headgear's: RDMOPT_VAR_MAXHPAMOUNT 1 RDMOPT_VAR_MAXSPAMOUNT 2 RDMOPT_VAR_STRAMOUNT 3 RDMOPT_VAR_AGIAMOUNT 4 RDMOPT_VAR_VITAMOUNT 5 RDMOPT_VAR_INTAMOUNT 6 RDMOPT_VAR_DEXAMOUNT 7 RDMOPT_VAR_LUKAMOUNT 8 RDMOPT_VAR_MAXHPPERCENT 9 RDMOPT_VAR_MAXSPPERCENT 10 RDMOPT_VAR_HPACCELERATION 11 RDMOPT_VAR_SPACCELERATION 12 RDMOPT_VAR_ATKPERCENT 13 RDMOPT_VAR_MAGICATKPERCENT 14 RDMOPT_VAR_PLUSASPD 15 RDMOPT_VAR_PLUSASPDPERCENT 16 RDMOPT_VAR_ATTPOWER 17 RDMOPT_VAR_HITSUCCESSVALUE 18 RDMOPT_VAR_ATTMPOWER 19 RDMOPT_VAR_ITEMDEFPOWER 20 RDMOPT_VAR_MDEFPOWER 21 RDMOPT_VAR_AVOIDSUCCESSVALUE 22 RDMOPT_VAR_PLUSAVOIDSUCCESSVALUE 23 RDMOPT_VAR_CRITICALSUCCESSVALUE 24 RDMOPT_ATTR_TOLERACE_NOTHING 25 RDMOPT_ATTR_TOLERACE_WATER 26 RDMOPT_ATTR_TOLERACE_GROUND 27 RDMOPT_ATTR_TOLERACE_FIRE 28 RDMOPT_ATTR_TOLERACE_WIND 29 RDMOPT_ATTR_TOLERACE_POISON 30 armor: RDMOPT_ATTR_TOLERACE_SAINT 31 RDMOPT_ATTR_TOLERACE_DARKNESS 32 RDMOPT_ATTR_TOLERACE_TELEKINESIS 33 RDMOPT_ATTR_TOLERACE_UNDEAD 34 RDMOPT_ATTR_TOLERACE_ALL 35 RDMOPT_DAMAGE_PROPERTY_NOTHING_USER 36 RDMOPT_DAMAGE_PROPERTY_NOTHING_TARGET 37 RDMOPT_DAMAGE_PROPERTY_WATER_USER 38 RDMOPT_DAMAGE_PROPERTY_WATER_TARGET 39 RDMOPT_DAMAGE_PROPERTY_GROUND_USER 40 RDMOPT_DAMAGE_PROPERTY_GROUND_TARGET 41 RDMOPT_DAMAGE_PROPERTY_FIRE_USER 42 RDMOPT_DAMAGE_PROPERTY_FIRE_TARGET 43 RDMOPT_DAMAGE_PROPERTY_WIND_USER 44 RDMOPT_DAMAGE_PROPERTY_WIND_TARGET 45 RDMOPT_DAMAGE_PROPERTY_POISON_USER 46 RDMOPT_DAMAGE_PROPERTY_POISON_TARGET 47 RDMOPT_DAMAGE_PROPERTY_SAINT_USER 48 RDMOPT_DAMAGE_PROPERTY_SAINT_TARGET 49 RDMOPT_DAMAGE_PROPERTY_DARKNESS_USER 50 RDMOPT_DAMAGE_PROPERTY_DARKNESS_TARGET 51 RDMOPT_DAMAGE_PROPERTY_TELEKINESIS_USER 52 RDMOPT_DAMAGE_PROPERTY_TELEKINESIS_TARGET 53 RDMOPT_DAMAGE_PROPERTY_UNDEAD_USER 54 RDMOPT_DAMAGE_PROPERTY_UNDEAD_TARGET 55 RDMOPT_MDAMAGE_PROPERTY_NOTHING_USER 56 RDMOPT_MDAMAGE_PROPERTY_NOTHING_TARGET 57 RDMOPT_MDAMAGE_PROPERTY_WATER_USER 58 RDMOPT_MDAMAGE_PROPERTY_WATER_TARGET 59 RDMOPT_MDAMAGE_PROPERTY_GROUND_USER 60 RDMOPT_MDAMAGE_PROPERTY_GROUND_TARGET 61 shields: RDMOPT_MDAMAGE_PROPERTY_FIRE_USER 62 RDMOPT_MDAMAGE_PROPERTY_FIRE_TARGET 63 RDMOPT_MDAMAGE_PROPERTY_WIND_USER 64 RDMOPT_MDAMAGE_PROPERTY_WIND_TARGET 65 RDMOPT_MDAMAGE_PROPERTY_POISON_USER 66 RDMOPT_MDAMAGE_PROPERTY_POISON_TARGET 67 RDMOPT_MDAMAGE_PROPERTY_SAINT_USER 68 RDMOPT_MDAMAGE_PROPERTY_SAINT_TARGET 69 RDMOPT_MDAMAGE_PROPERTY_DARKNESS_USER 70 RDMOPT_MDAMAGE_PROPERTY_DARKNESS_TARGET 71 RDMOPT_MDAMAGE_PROPERTY_TELEKINESIS_USER 72 RDMOPT_MDAMAGE_PROPERTY_TELEKINESIS_TARGET 73 RDMOPT_MDAMAGE_PROPERTY_UNDEAD_USER 74 RDMOPT_MDAMAGE_PROPERTY_UNDEAD_TARGET 75 RDMOPT_BODY_ATTR_NOTHING 76 RDMOPT_BODY_ATTR_WATER 77 RDMOPT_BODY_ATTR_GROUND 78 RDMOPT_BODY_ATTR_FIRE 79 RDMOPT_BODY_ATTR_WIND 80 RDMOPT_BODY_ATTR_POISON 81 RDMOPT_BODY_ATTR_SAINT 82 RDMOPT_BODY_ATTR_DARKNESS 83 RDMOPT_BODY_ATTR_TELEKINESIS 84 RDMOPT_BODY_ATTR_UNDEAD 85 RDMOPT_BODY_ATTR_ALL 86 RDMOPT_RACE_TOLERACE_NOTHING 87 RDMOPT_RACE_TOLERACE_UNDEAD 88 RDMOPT_RACE_TOLERACE_ANIMAL 89 RDMOPT_RACE_TOLERACE_PLANT 90 RDMOPT_RACE_TOLERACE_INSECT 91 RDMOPT_RACE_TOLERACE_FISHS 92 shoes: RDMOPT_RACE_TOLERACE_FISHS 92 RDMOPT_RACE_TOLERACE_DEVIL 93 RDMOPT_RACE_TOLERACE_HUMAN 94 RDMOPT_RACE_TOLERACE_ANGEL 95 RDMOPT_RACE_TOLERACE_DRAGON 96 RDMOPT_RACE_DAMAGE_NOTHING 97 RDMOPT_RACE_DAMAGE_UNDEAD 98 RDMOPT_RACE_DAMAGE_ANIMAL 99 RDMOPT_RACE_DAMAGE_PLANT 100 RDMOPT_RACE_DAMAGE_INSECT 101 RDMOPT_RACE_DAMAGE_FISHS 102 RDMOPT_RACE_DAMAGE_DEVIL 103 RDMOPT_RACE_DAMAGE_HUMAN 104 RDMOPT_RACE_DAMAGE_ANGEL 105 RDMOPT_RACE_DAMAGE_DRAGON 106 RDMOPT_RACE_MDAMAGE_NOTHING 107 RDMOPT_RACE_MDAMAGE_UNDEAD 108 RDMOPT_RACE_MDAMAGE_ANIMAL 109 RDMOPT_RACE_MDAMAGE_PLANT 110 RDMOPT_RACE_MDAMAGE_INSECT 111 RDMOPT_RACE_MDAMAGE_FISHS 112 RDMOPT_RACE_MDAMAGE_DEVIL 113 RDMOPT_RACE_MDAMAGE_HUMAN 114 RDMOPT_RACE_MDAMAGE_ANGEL 115 RDMOPT_RACE_MDAMAGE_DRAGON 116 RDMOPT_RACE_CRI_PERCENT_NOTHING 117 RDMOPT_RACE_CRI_PERCENT_UNDEAD 118 RDMOPT_RACE_CRI_PERCENT_ANIMAL 119 RDMOPT_RACE_CRI_PERCENT_PLANT 120 RDMOPT_RACE_CRI_PERCENT_INSECT 121 RDMOPT_RACE_CRI_PERCENT_FISHS 122 weapon: RDMOPT_RACE_CRI_PERCENT_DEVIL 123 RDMOPT_RACE_CRI_PERCENT_HUMAN 124 RDMOPT_RACE_CRI_PERCENT_ANGEL 125 RDMOPT_RACE_CRI_PERCENT_DRAGON 126 RDMOPT_RACE_IGNORE_DEF_PERCENT_NOTHING 127 RDMOPT_RACE_IGNORE_DEF_PERCENT_UNDEAD 128 RDMOPT_RACE_IGNORE_DEF_PERCENT_ANIMAL 129 RDMOPT_RACE_IGNORE_DEF_PERCENT_PLANT 130 RDMOPT_RACE_IGNORE_DEF_PERCENT_INSECT 131 RDMOPT_RACE_IGNORE_DEF_PERCENT_FISHS 132 RDMOPT_RACE_IGNORE_DEF_PERCENT_DEVIL 133 RDMOPT_RACE_IGNORE_DEF_PERCENT_HUMAN 134 RDMOPT_RACE_IGNORE_DEF_PERCENT_ANGEL 135 RDMOPT_RACE_IGNORE_DEF_PERCENT_DRAGON 136 RDMOPT_RACE_IGNORE_MDEF_PERCENT_NOTHING 137 RDMOPT_RACE_IGNORE_MDEF_PERCENT_UNDEAD 138 RDMOPT_RACE_IGNORE_MDEF_PERCENT_ANIMAL 139 RDMOPT_RACE_IGNORE_MDEF_PERCENT_PLANT 140 RDMOPT_RACE_IGNORE_MDEF_PERCENT_INSECT 141 RDMOPT_RACE_IGNORE_MDEF_PERCENT_FISHS 142 RDMOPT_RACE_IGNORE_MDEF_PERCENT_DEVIL 143 RDMOPT_RACE_IGNORE_MDEF_PERCENT_HUMAN 144 RDMOPT_RACE_IGNORE_MDEF_PERCENT_ANGEL 145 RDMOPT_RACE_IGNORE_MDEF_PERCENT_DRAGON 146 RDMOPT_CLASS_DAMAGE_NORMAL_TARGET 147 RDMOPT_CLASS_DAMAGE_BOSS_TARGET 148 RDMOPT_CLASS_DAMAGE_NORMAL_USER 149 RDMOPT_CLASS_DAMAGE_BOSS_USER 150 RDMOPT_CLASS_MDAMAGE_NORMAL 151 RDMOPT_CLASS_MDAMAGE_BOSS 152 RDMOPT_CLASS_IGNORE_DEF_PERCENT_NORMAL 153 garment: RDMOPT_CLASS_IGNORE_DEF_PERCENT_BOSS 154 RDMOPT_CLASS_IGNORE_MDEF_PERCENT_NORMAL 155 RDMOPT_CLASS_IGNORE_MDEF_PERCENT_BOSS 156 RDMOPT_DAMAGE_SIZE_SMALL_TARGET 157 RDMOPT_DAMAGE_SIZE_MIDIUM_TARGET 158 RDMOPT_DAMAGE_SIZE_LARGE_TARGET 159 RDMOPT_DAMAGE_SIZE_SMALL_USER 160 RDMOPT_DAMAGE_SIZE_MIDIUM_USER 161 RDMOPT_DAMAGE_SIZE_LARGE_USER 162 RDMOPT_DAMAGE_SIZE_PERFECT 163 RDMOPT_DAMAGE_CRI_TARGET 164 RDMOPT_DAMAGE_CRI_USER 165 RDMOPT_RANGE_ATTACK_DAMAGE_TARGET 166 RDMOPT_RANGE_ATTACK_DAMAGE_USER 167 RDMOPT_HEAL_VALUE 168 RDMOPT_HEAL_MODIFY_PERCENT 169 RDMOPT_DEC_SPELL_CAST_TIME 170 RDMOPT_DEC_SPELL_DELAY_TIME 171 RDMOPT_DEC_SP_CONSUMPTION 172 RDMOPT_HP_DRAIN 173 RDMOPT_SP_DRAIN 174 RDMOPT_WEAPON_ATTR_NOTHING 175 RDMOPT_WEAPON_ATTR_WATER 176 RDMOPT_WEAPON_ATTR_GROUND 177 RDMOPT_WEAPON_ATTR_FIRE 178 RDMOPT_WEAPON_ATTR_WIND 179 RDMOPT_WEAPON_ATTR_POISON 180 RDMOPT_WEAPON_ATTR_SAINT 181 RDMOPT_WEAPON_ATTR_DARKNESS 182 RDMOPT_WEAPON_ATTR_TELEKINESIS 183 RDMOPT_WEAPON_ATTR_UNDEAD 184 accessory: RDMOPT_WEAPON_INDESTRUCTIBLE 185 RDMOPT_BODY_INDESTRUCTIBLE 186 RDMOPT_MDAMAGE_SIZE_SMALL_TARGET 187 RDMOPT_MDAMAGE_SIZE_MIDIUM_TARGET 188 RDMOPT_MDAMAGE_SIZE_LARGE_TARGET 189 RDMOPT_MDAMAGE_SIZE_SMALL_USER 190 RDMOPT_MDAMAGE_SIZE_MIDIUM_USER 191 RDMOPT_MDAMAGE_SIZE_LARGE_USER 192 sir i would be able to change the random option later rite ? coz i am planning to make new ones if i get the script thank you so much
-
hello sir/madam i am requesting for a random item option system npc with options: 1.requires a item to do it 2.Allows overwriting the already existing option enchantment 3.fail %, if fail enchant will be removed and item will be back to inventory. 4. MaxIndex,1; // Maximum option slots ( default is 0 to 4 ) where it has option for players to choose like armor,headgear's,shield,weapon,shield,shoes,garment,accessory. if the player choose armor it should give a random option from 1 - 30 if the player choose headgear's it should give random option from 31-61 if the player choose shield it should give random option from 62-92 ,, ,, like we can specify random item option for each type of equips. set 1-30 for armor set 31-61 for headgear. please help thank you.
-
am not sure about the random reward but you can edit it manually what player needs to get each day you can set that at this part // Daily Prize items: // "<Zeny>,<Points>,<BaseExp>,<JobExp>,<itemID-1>,<amount-1>,<itemID-2>,<amount-2>...etc", // Day 1 // "<Zeny>,<Points>,<BaseExp>,<JobExp>,<itemID-1>,<amount-1>,<itemID-2>,<amount-2>...etc" // Day 2 // ...; // Total length of any days string must be 255 or shorter setarray .Rewards$[1], "1000", // Day 1: 1000 Zeny "0,0,0,0,501,5", // Day 2: 5 Red Potion "0,0,0,0,506,5", // Day 3: 5 Green Potion "2000", // Day 4: 2000 Zeny "2000", // Day 5: 2000 Zeny "0,0,0,0,502,5", // Day 6: 5 Orange Potion "0,0,0,0,12208,1", // Day 7: 1 Battle Manual for example: if you dont want zeny 1000 // Day 1: 1000 Zeny change it to: "0,0,0,0,poringcoin ID,amount(how many the player should get)", same way you can do for all the other days ------------------------------------------------------------------------------------------ also you can check this part to edit it accoring to your needs: OnInit: // Basic Settings // 1: Item | 2: Points | 4: Zeny | 8: Exp // 16: Gain Buffs // 32: Show Cutins | 64: Show Next Day Cutin // 128: Item Rewards Bound // 256: No Rewards for Autotraders // (a bit value, e.g. 3 = Items & Points from Multi) .Mode = 1|2|4|16|32|64|128|256; // Item Binding Mode // Bound_Account : Account Bound item // Bound_Guild : Guild Bound item // Bound_Party : Party Bound item // Bound_Char : Character Bound item .Bound_Mode = Bound_Account; // To disable the command '@loginreward' comment the next lines // * Needs extra commands for typos bindatcmd("relog","LOGIN::OnLoginCmnd",0,99); bindatcmd("collectreward",strnpcinfo(3)+"::OnLoginCmnd",0,99); bindatcmd("dailyreward",strnpcinfo(3)+"::OnLoginCmnd",0,99); bindatcmd("collectdaily",strnpcinfo(3)+"::OnLoginCmnd",0,99); bindatcmd("nextreward",strnpcinfo(3)+"::OnNextCmnd",0,99); // Reset days back to 0 on a skipped day. // Toggle // [0] = Off // [1] = On .Reset = 0; // .Rest // Delay after login to collect rewards // In Minutes .Rest = 0; // Point Name .Points$ = "Loyalty Points"; // Ip check to prevent multi accounts // Toggle // [0] = Off // [1] = On .IPCheck = 0; i think this will help you understand ^_^
-
Stolao's Pvp Ladder [v3.1A]
NakedWolf replied to Stolao's topic in PvP, GvG, WoE, Battleground Script Releases
there is warning when using the latest version of this script ,and am also using the latest version of rathena -
try this you might like it ^_^
-
but if there are players playing from a cafe if the script is using IP fetch all the players in the cafe will be kick out rite ? like only one player from the cafe can login rest all will be kicked correct me if a wrong. ^_^ if you are using gpard shield it fetches mac address and also uniqueID so other players wont be effected so i think the better option is either diff your client to disabled multiple login from abusing some scripts or buy gpard (best option)