-
Posts
146 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by mR L
-
buildin_getmapxy: fatal error ! player not attached! problem while putting MVP room
mR L replied to AinsLord's question in Scripting Support
use the latest one https://github.com/rathena/rathena/blob/master/npc/custom/etc/mvp_room.txt -
Change this : if([email protected] >= getarraysize(.enchant_slot)) close; To this : if([email protected] > getarraysize(.enchant_slot)) close;
-
https://github.com/rathena/rathena/blob/master/npc/custom/etc/mvp_room.txt you can setting at set [email protected][2], 1; // Turn MVP Summoning On/Off set [email protected][3], 1; // Turn Mini boss Summoning On/Off 0 = Off 1 = On
-
putting how many bloody branch to trade instead of one by one
mR L replied to AinsLord's question in Scripting Support
turbo_room,99,113,4 script Build Manager 930,{ mes "[ Build Manager ]"; mes "1x Bloody Branch"; mes " > 100 Dead Branch"; mes " > 100.000 Zeny"; mes "^FFFFFF_^000000"; mes "How many you want exchange ?"; input [email protected]; next; if(countitem(604) < (100*[email protected]) || Zeny < (100000*[email protected]) || [email protected] < 1) { mes "[ Build Manager ]"; mes "Not enough requirements"; close; } mes "[ Build Manager ]"; mes "Here you go"; delitem 604,(100*[email protected]); set Zeny,Zeny-(100000*[email protected]); getitem 12103,(1*[email protected]mmount); end; } -
Global Script Base Luk str gives dmg and heal power
mR L replied to ruben0101's question in Script Requests
-
Freebies Gepard unique ID that can choose STR/DEX/AGI/VIT/LUK/INT
mR L replied to DevilSupremeRO's question in Scripting Support
change with : -
this not bug #KAFRAPOINTS is another name of Free Cash you can use another name like #hourlypoints
-
// Shop 2 Add(2,5137,1,0,0,5141,5,7047,100,7166,50,7038,20,978,1); // Shop 3 Add(3,5389,1,0,0,5043,5,7568,150,969,10);
-
for middle "Eden Weapons", // Shop Named 1 "Middle"; // Shop Named 2 don't forget also // Quest items -- do NOT use a reward item more than once! Add(<shop ID>,<reward ID>,<reward amount>,<Zeny cost>,<point cost>,<required item ID>,<required item amount>{,...});
-
"Eden Weapons"; // Shop Named 1
-
Try this :
-
https://github.com/rathena/rathena/blob/master/npc/custom/quests/quest_shop.txt
-
Try this : // ------------------------------------------------------------------------------- // Script Name : Headgear to Costume converter >> Costume to Headgear converter // ------------------------------------------------------------------------------- // Description : // - Allows a user to convert the equipped headgear (on Top, Mid or Low) into a // costume item. It will remove any card and refine of the Item. // - Allows a user to restore the equipped costume headgear (on Top, Mid or Low) // into its original form. It will not return any card or refine of the item. // ------------------------------------------------------------------------------- function script costume { [email protected]_name$ = getarg(0); // ====================================================================== [email protected] = 7399; // Item ID Requirement // ====================================================================== disable_items; mes "["+ [email protected]_name$ +"]"; mes "Here you can convert your headgears into a Costume Headgear or restore to its Original form."; next; switch(select("I want to convert.:I want to restore.:No thanks.")) { case 1: setarray [email protected][1], EQI_HEAD_TOP, EQI_HEAD_MID, EQI_HEAD_LOW; for ([email protected] = 1; [email protected]<=3; [email protected]) { if (getequipisequiped([email protected][[email protected]])) { [email protected]$ = [email protected]$ + F_getpositionname([email protected][[email protected]]) + "-[" + getequipname([email protected][[email protected]]) + "]"; [email protected] = 1; } [email protected]$ = [email protected]$ + ":"; } if ([email protected] == 0) { mes "["+ [email protected]_name$ +"]"; mes "You need to wear headgears that I can costume..."; close; } mes "["+ [email protected]_name$ +"]"; mes "Please select what to convert."; mes "Remember, cards and refine will be removed."; next; [email protected] = [email protected][ select([email protected]$) ]; if (!getequipisequiped([email protected])) { mes "["+ [email protected]_name$ +"]"; mes "You're not wearing anything there..."; close; } mes "["+ [email protected]_name$ +"]"; mes "You want to Costume your " + getitemname(getequipid([email protected])) + "?"; next; if (select("Yes, proceed:No, sorry.") == 2) { mes "["+ [email protected]_name$ + "]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } if ( countitem([email protected]) < 1 ) { mes "["+ [email protected]_name$ + "]"; mes "You need "+getitemname([email protected]); end; } delitem [email protected],1; costume [email protected],1; // Convert the Headgear mes "["+ [email protected]_name$ +"]"; mes "Done, enjoy your costume headgear."; close; case 2: setarray [email protected][1], EQI_COSTUME_HEAD_TOP, EQI_COSTUME_HEAD_MID, EQI_COSTUME_HEAD_LOW; for ([email protected] = 1; [email protected]<=3; [email protected]) { if (getequipisequiped([email protected][[email protected]])) { [email protected]$ = [email protected]$ + F_getpositionname([email protected]$[[email protected]]) + "-[" + getequipname([email protected][[email protected]]) + "]"; [email protected] = 1; } [email protected]$ = [email protected]$ + ":"; } if ([email protected] == 0) { mes "["+ [email protected]_name$ +"]"; mes "You need to wear costumed headgears that I can restore..."; close; } mes "["+ [email protected]_name$ +"]"; mes "Please select what to restore."; mes "Remember, I will only restore it back without refine and cards."; next; [email protected] = [email protected][ select([email protected]$) ]; if (!getequipisequiped([email protected])) { mes "["+ [email protected]_name$ +"]"; mes "You're not wearing anything there..."; close; } if (isequippedcnt(getequipid([email protected])) > 1) { mes "["+ [email protected]_name$ +"]"; mes "You're wearing too many of the same headgear!"; mes "How am I supposed to know which one to restore?"; mes "See me when you have one equipped."; close; } if (countitem(getequipid([email protected])) > 1) { mes "["+ [email protected]_name$ +"]"; mes "You have another " + getitemname(getequipid([email protected])) + " with you."; mes "Put it away before restoring."; close; } mes "[" + [email protected]_name$ + "]"; mes "You want to restore your " + getitemname(getequipid([email protected])) + "?"; next; if (select("Yes, proceed:No, sorry.") == 2) { mes "["+ [email protected]_name$ +"]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } if ( countitem([email protected]) < 1 ) { mes "["+ [email protected]_name$ + "]"; mes "You need "+getitemname([email protected]); end; } delitem [email protected],1; // Restore headgear by recreating a = getequipid([email protected]); delitem a,1; getitem a,1; mes "["+ [email protected]_name$ +"]"; mes "Done, enjoy your restored headgear."; close; case 3: mes "["+ [email protected]_name$ +"]"; mes "Very well. Return at once if you seek my services."; close; } } // --------------------------------------------------------------------------- // Add more lines to put your npc on different cities (adjust name if desired) // --------------------------------------------------------------------------- prontera,159,181,5 script Costume Clown#1 715,{ callfunc "costume","Costume Clown",0; end; }
-
Change this : To this : Change this : To this :
-
Instant JOB Class Changer Ex from Rune Knight to Warlock etc.
mR L replied to Karthikeyan's question in Script Requests
and remove this line -
Remove this line : // RODEX makes these NPCs useless - script RodexMailBoxInit -1,{ end; OnInit: if( PACKETVER >= 20150513 ){ unloadnpc "MailBox"; } end;
-
if (vip_status(1)){ setarray [email protected][1],450,50,80; } else { setarray [email protected][1],150,20,30; }
-
https://github.com/rathena/rathena/blob/master/npc/custom/item_signer.txt Change : setarray [email protected][1], EQI_HEAD_TOP, EQI_ARMOR, EQI_HAND_L, EQI_HAND_R, EQI_GARMENT, EQI_SHOES, EQI_ACC_L, EQI_ACC_R, EQI_HEAD_MID, EQI_HEAD_LOW; To : setarray [email protected][1],EQI_COSTUME_HEAD_TOP, EQI_COSTUME_HEAD_MID, EQI_COSTUME_HEAD_LOW, EQI_COSTUME_GARMENT; hmm, I'm not sure you can use this one
-
https://github.com/rathena/rathena/blob/master/npc/other/mail.txt
-
payment script contact emistry
-
How to add custom restricted zones in restricted.txt
mR L replied to WhiteEagle's question in Script Requests
I try already to use the job_noenter_map.txt but only block when you go to map use @warp if you using npc warper, is not effected I don't know, maybe another people have custom source -
How to add custom restricted zones in restricted.txt
mR L replied to WhiteEagle's question in Script Requests
I never use that one try tou use the script source : Emistry Script -
Cause your server still online Make offline first and then delete