Diconfrost VaNz Posted February 28, 2013 Posted February 28, 2013 As we know about the rebirth system is like saving your existing stats and add it to your present stats when reborn. It was like buying stats and making something like FULL STATS or something, right? Well, i made something weird. This is not for the stats or something, it will just give you something rare. I've set it into "Ancient Langguage Document" just for completing the script. You can change it to your liking. Whether you use something rare items or what. This script was also connected to my ViP System. ViPs are not going to pay zeny when rebirthing. http://upaste.me/dddb5442ad741204 Hope you enjoy this little script. 1 Quote
Ninjamon Posted March 2, 2013 Posted March 2, 2013 okay Doesn't work! Its stucking on the Requirements part // ------------------------------------------------------------------------------------------ // ------ Script Release // Title: Simple Rebirth System // // Author: Diconfrost VaNz - www.wipeoutgaming.info - [email protected] // // Version: 1.0 // // It will turn you into a Level 1 High Novice and give you an item as a reward for a certain amount of zeny. // This is integrated to my vip system. http://rathena.org/board/topic/79130-v20basic-premium-system/ // ViPs are not going to pay zeny when rebirthing. // // ------------------------------------------------------------------------------------------ farebury,163,127,4 script Rebirther 584,{ mes "[^FF0000Darryll^000000]"; mes "*Sleeping*"; next; mes "[^FF0000Darryll^000000]"; mes "Hello "+strcharinfo(0)+", I'm ^0055FFGemini^000000."; mes "I can give you something in exchange of your strength."; mes "Are you ready for it?"; next; switch(select("I'd like to more details about it.:I'm ready!:What's the prize?:Cancel")) { case 1: mes "[^FF0000Darryll^000000]"; mes "This is how it works."; mes "Whenever you reach the a certain base leve(^0055FF255^000000), you can rebirth again into ^0055FFLevel 1 High Novice^000000, and recieve a ^0055FFValuable Prize^000000!"; next; mes "[^FF0000Darryll^000000]"; mes "So if you want it, just grind it!"; mes "HAHAHAHA!"; mes "I guess, i already said what you need."; mes "See ya!"; close; case 2: mes "[^FF0000Darryll^000000]"; mes "Well well well... "; mes "What do we have here?"; next; mes "[^FF0000Darryll^000000]"; mes "Oh! you want to be reborn!"; next; if (baselvl <254) goto R_Sorry; if (prmm > gettimetick(2)) goto V_VIP; next; if (Zeny < 1000000) goto V_Zen; mes "[^FF0000Darryll^000000]"; mes "Oh, enjoy your day!"; mes "Come back again!"; set zeny, zeny - 1000000; goto R_Reborn; close; V_VIP: mes "[^FF0000Darryll^000000]"; mes "Oh you're a ^0055FFVIP^000000!"; goto R_Reborn; close; R_Reborn: atcommand "@blvl -255 "+strcharinfo(0); atcommand "@jlvl -120 "+strcharinfo(0); atcommand "@job 4001 "+strcharinfo(0); getitem 7914,1; close; R_Sorry: mes "[^FF0000Darryll^000000]"; mes "You must meet the basic ^0055FFRequirements^000000."; close; V_Zen: mes "[^FF0000Darryll^000000]"; mes "You don't have the required number of ^0055FFZennies^000000."; mes "Please come back again."; close; case 3: mes "[^FF0000Darryll^000000]"; mes "Hmmmm. lets see!"; next; mes "[^FF0000Darryll^000000]"; mes "Well, I can give you 25pcs of ^0055FFEvent Tickets^000000."; close; case 4: mes "[^FF0000Darryll^000000]"; mes "Very well! You can come back anytime!."; close; } } Quote
nanakiwurtz Posted March 2, 2013 Posted March 2, 2013 I think it should be 'baselevel' instead of 'baselvl', but I don't quite understand with your question, on which part? Quote
mrlongshen Posted March 2, 2013 Posted March 2, 2013 how many times this rebirth system can be use ? Quote
nanakiwurtz Posted March 2, 2013 Posted March 2, 2013 If I read the script, it can be used multiple times, as long as you want. Quote
Diconfrost VaNz Posted March 2, 2013 Author Posted March 2, 2013 (edited) okay Doesn't work! Its stucking on the Requirements part // ------------------------------------------------------------------------------------------ // ------ Script Release // Title: Simple Rebirth System // // Author: Diconfrost VaNz - www.wipeoutgaming.info - [email protected] // // Version: 1.0 // // It will turn you into a Level 1 High Novice and give you an item as a reward for a certain amount of zeny. // This is integrated to my vip system. http://rathena.org/board/topic/79130-v20basic-premium-system/ // ViPs are not going to pay zeny when rebirthing. // // ------------------------------------------------------------------------------------------ farebury,163,127,4 script Rebirther 584,{ mes "[^FF0000Darryll^000000]"; mes "*Sleeping*"; next; mes "[^FF0000Darryll^000000]"; mes "Hello "+strcharinfo(0)+", I'm ^0055FFGemini^000000."; mes "I can give you something in exchange of your strength."; mes "Are you ready for it?"; next; switch(select("I'd like to more details about it.:I'm ready!:What's the prize?:Cancel")) { case 1: mes "[^FF0000Darryll^000000]"; mes "This is how it works."; mes "Whenever you reach the a certain base leve(^0055FF255^000000), you can rebirth again into ^0055FFLevel 1 High Novice^000000, and recieve a ^0055FFValuable Prize^000000!"; next; mes "[^FF0000Darryll^000000]"; mes "So if you want it, just grind it!"; mes "HAHAHAHA!"; mes "I guess, i already said what you need."; mes "See ya!"; close; case 2: mes "[^FF0000Darryll^000000]"; mes "Well well well... "; mes "What do we have here?"; next; mes "[^FF0000Darryll^000000]"; mes "Oh! you want to be reborn!"; next; if (baselvl <254) goto R_Sorry; if (prmm > gettimetick(2)) goto V_VIP; next; if (Zeny < 1000000) goto V_Zen; mes "[^FF0000Darryll^000000]"; mes "Oh, enjoy your day!"; mes "Come back again!"; set zeny, zeny - 1000000; goto R_Reborn; close; V_VIP: mes "[^FF0000Darryll^000000]"; mes "Oh you're a ^0055FFVIP^000000!"; goto R_Reborn; close; R_Reborn: atcommand "@blvl -255 "+strcharinfo(0); atcommand "@jlvl -120 "+strcharinfo(0); atcommand "@job 4001 "+strcharinfo(0); getitem 7914,1; close; R_Sorry: mes "[^FF0000Darryll^000000]"; mes "You must meet the basic ^0055FFRequirements^000000."; close; V_Zen: mes "[^FF0000Darryll^000000]"; mes "You don't have the required number of ^0055FFZennies^000000."; mes "Please come back again."; close; case 3: mes "[^FF0000Darryll^000000]"; mes "Hmmmm. lets see!"; next; mes "[^FF0000Darryll^000000]"; mes "Well, I can give you 25pcs of ^0055FFEvent Tickets^000000."; close; case 4: mes "[^FF0000Darryll^000000]"; mes "Very well! You can come back anytime!."; close; } } change if (baselvl <254) goto R_Sorry; into if (baselvl > 254) goto R_Sorry; how many times this rebirth system can be use ? many times you want Edited March 2, 2013 by Diconfrost VaNz Quote
mrlongshen Posted March 3, 2013 Posted March 3, 2013 when rebirth what we can get ? + status ? get item only ? Quote
mrlongshen Posted March 4, 2013 Posted March 4, 2013 we can select +str, +dex, +int and etc. hehe Quote
Diconfrost VaNz Posted March 4, 2013 Author Posted March 4, 2013 ohhh a rebirth system that saves your current stats b4 rebirthing? am i right? Quote
Capuche Posted March 4, 2013 Posted March 4, 2013 (edited) In my opinion, baselvl should be BaseLevel like nanakiwurtz said, otherwise baselvl is a char variable, not a parameter BaseLevel - Character's base level. Edited March 4, 2013 by Capuche Quote
Diconfrost VaNz Posted July 12, 2013 Author Posted July 12, 2013 sorry guys if i was out for a long time, i will update this asap sorry please wait for futher updates Quote
mrlongshen Posted August 9, 2013 Posted August 9, 2013 sorry guys if i was out for a long time, i will update this asap sorry please wait for futher updates hello sir. please update 1 Quote
Patskie Posted November 15, 2013 Posted November 15, 2013 - if (baselvl <150) goto R_Sorry; + if (BaseLevel < 150) goto R_Sorry; - atcommand "@blvl -200 "+strcharinfo(0); - atcommand "@jlvl -100 "+strcharinfo(0); - atcommand "@job 4001 "+strcharinfo(0); + BaseLevel -= 200; + JobLevel -= 100; + jobchange 4001; + means add - means remove 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.