-
Posts
134 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Ice Bear
-
Maybe This Helps Need an Item for Resurection - script Reviver -1,{ OnUsed: menu "Resurection",Resu,"Cancel",Canceled; Resu: sleep2 200; atcommand "@alive"; close; Canceled: message strcharinfo(0),"Ok Your Choice Master."; getitem 501,1; //501 = red potion just test//Set ITEM ID for your Resurection Script close; } - script Revived -1,{ end; OnPCDieEvent: if(countitem(501)<1) goto L_DHAVE; // ITEM CHECK IF HAVE TOKEN if( strcharinfo(3) == "prontera" ) { // MAP DISABALER message strcharinfo(0),"Cant Use In PVP MAPS"; close; } doevent "Reviver::OnUsed"; goto D_eleter; close; D_eleter: message strcharinfo(0),"Resurection Stone Used"; delitem 501,1; //501 = red potion just test//Set ITEM ID for your Resurection Script close; L_DHAVE: message strcharinfo(0),"You Dont Have Resurection Stone."; close; }
-
[Need Help] About Checking Char ID in Quest
Ice Bear replied to Ice Bear's question in Scripting Support
how about here emistry is this right ? if (QWeight == 5) goto Q_END; -
[Need Help] About Checking Char ID in Quest
Ice Bear replied to Ice Bear's question in Scripting Support
All i want is to make the quest 10 times usage per character Here is my Script >> prontera,156,170,5 script Weight Quest 416,{ set .npcname$,"^0000EE[Weight Quest]^000000"; set .MaxWeight,500; set @req$,"^FF030DRequirements :^000000"; if(QWeight == 10) goto Q_END; mes "[Warning]"; mes "This Quest is 10 Time's Only & Per Account"; mes "Before Using"; mes "This Weight Increase Sets For Ever in Your Char"; mes "Next to Proceed"; next; mes .npcname$; mes "This Quest is 10 Time's Only & Per Account"; mes "^0276FD[~Requirements]^000000"; mes "^0276FD[250pcs]^000000 Handcuff's"; mes "^0276FD[250pcs]^000000 Bank Note's"; mes "+ [^0000EE"+.MaxWeight+"^000000] Weight Each Quest"; menu "I have the requirements",Q_START,"Cancel",Q_CANCEL; close; Q_START: next; mes .npcname$; mes "Hello there "+strcharinfo(0); mes "Are You Ready!?"; menu "Increase Now! +500 Weights",Q_START2,"Cancel",Q_CANCEL; close; Q_START2: if((countitem(7345)<250) || (countitem(501)<250)) goto Q_REQ; delitem 7345,250; delitem 501,250; set MaxWeight,MaxWeight+5000; set QWeight,1; dispbottom "Increased Weight by "+.MaxWeight+""; close; Q_REQ: next; mes .npcname$; mes "This Quest is 10 Time's Only & Per Account"; mes "Complete The Requirements First"; close; Q_END: next; mes .npcname$; mes "This Quest is 10 Time's Only & Per Account"; mes "Limit Exceed"; close; Q_CANCEL: next; mes .npcname$; mes "Ok "+strcharinfo(0); mes "Come Back Again"; close; OnInit: waitingroom "Weight Quest",0; end; } close; } i try to use my script but when ive got 10 times finished the quets by my one character and ive try to use my second char it says already did the quest =.= -
Any One Can Help Me Out About a Quest Restriction Per Character I Used This But It Affect The Whole Acc This is For Whole Acc: set QWeight,1; if(QWeight == 10) goto Q_END; I Need For Per Char Only: Anyone Got The Solution For Me Thanks ~
-
//==============================================================================// //=[script Release : Credit Exchanger] //=[Easy Modification] //============================================================================// //=[script : DaemonSpade] //==============================================================================// //=[idea Came From : DaemonSpade] //=[special Thanks to : Emistry] //==============================================================================// //= Description //==============================================================================// //=1. This Script Has Capacity Exchange //= Zeny Capacity is 2,000,000,000z //=A.Non Zeny Eater //=B.Zeny/Credit Limiter Make it Exact //=Example A: You Have 2b Zeny & You Exchange a Coin/Credit //= The NPC Will Ask You Agian How Many Credits or Zeny You Will Exchanged //=Example B: It Reads Your Zeny so The NPC Know The Max of Credit You Can Exchange Dont Put Wrong Ammount of Credit/Coin //= The NPC Will Ask You Agian How Many Credits or Zeny You Will Exchanged //==============================================================================// //= Rules for using this script //=1. Do not claim it as yours. //=2. Do not change the credits. //=3. Do not sell the script to earn money. //==============================================================================// Here's The Script Link http://pastebin.com/nDWzRM5T Thanks