WhiteEagle Posted November 17, 2012 Group: Members Topic Count: 79 Topics Per Day: 0.02 Content Count: 480 Reputation: 67 Joined: 08/28/12 Last Seen: 11 minutes ago Share Posted November 17, 2012 (edited) File Name: LevelUpBox File Submitter: WhiteEagle File Submitted: 16 Nov 2012 File Category: Utilities Content Author: WhiteEagle A short and simple script named "LevelUpBox". Easy to change the item which will gain the player by: set .@item$,501; // Level 1 with Item "Red Potion"; Function: Every 10 level-up the player will gain an item. Click here to download this file Edited November 17, 2012 by WhiteEagle Quote Link to comment Share on other sites More sharing options...
Euphy Posted November 17, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted November 17, 2012 This script can be rewritten as: OnPCBaseLvUpEvent: setarray .@item[0],501,501,501,501,501,501,501,501,501,501,501,501,501,501,501; if (!(BaseLevel%10)) getitem .@item[(BaseLevel/10)-1]; end; 1 Quote Link to comment Share on other sites More sharing options...
Ajjwidjdneidjenw Posted November 18, 2012 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 161 Reputation: 31 Joined: 12/06/11 Last Seen: December 25, 2022 Share Posted November 18, 2012 (edited) Darnit Eurphy, you were faster than I was.(didn't notice your post, thought it wasn't brought up.). Indeed can be a lot smaller(keep comments intact, and special effects intact.) can do the special effects with a loop aswell . Also you were using string Variables ($ at the end), which does not apply, as you were using ID's. // ============== Credit ===================== // Scripted by WhiteEagle // =============== For ======================= // Delphin Project // =========================================== - script Levelupbox -1,{ OnPCBaseLvUpEvent: setarray .@item[0],501, // Level 10 with Item "Red Potion"; 501, // Level 20 with Item "Red Potion"; 501, // Level 30 with Item "Red Potion"; 501, // Level 40 with Item "Red Potion"; 501, // Level 50 with Item "Red Potion"; 501, // Level 60 with Item "Red Potion"; 501, // Level 70 with Item "Red Potion"; 501, // Level 80 with Item "Red Potion"; 501, // Level 90 with Item "Red Potion"; 501, // Level 100 with Item "Red Potion"; 501, // Level 110 with Item "Red Potion"; 501, // Level 120 with Item "Red Potion"; 501, // Level 130 with Item "Red Potion"; 501, // Level 140 with Item "Red Potion"; 501; // Level 150 with Item "Red Potion"; if(!(Baselevel%10)) End; For(set .@i,71; .@i < 73; set .@i,.@i++) specialeffect2 .@i; getitem .@item[(BaseLevel/10)-1],1; dispbottom "Congratulation "+strcharinfo(0)+" to level "+BaseLevel+"!"; end; } Edited November 27, 2012 by garet999 1 Quote Link to comment Share on other sites More sharing options...
anton21 Posted December 20, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 12/17/12 Last Seen: June 16, 2014 Share Posted December 20, 2012 This script is useful, thanks for the script... Thanks Quote Link to comment Share on other sites More sharing options...
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.