narien123 Posted June 14, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 39 Reputation: 0 Joined: 03/06/15 Last Seen: July 27, 2015 Share Posted June 14, 2015 when player reach level 60 , 70 ,80 , 90 , 99 auto get item ..and announce the name <name > reach level 60 ... Quote Link to comment Share on other sites More sharing options...
Elsa Mist Posted June 14, 2015 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 387 Reputation: 60 Joined: 10/08/13 Last Seen: July 14, 2022 Share Posted June 14, 2015 dont know if it works, u can just give it a try - script LevelAnnouncer -1,{ if(BaseLevel == 60) { announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } Quote Link to comment Share on other sites More sharing options...
narien123 Posted June 14, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 39 Reputation: 0 Joined: 03/06/15 Last Seen: July 27, 2015 Author Share Posted June 14, 2015 dont know if it works, u can just give it a try - script LevelAnnouncer -1,{ if(BaseLevel == 60) { announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } - script LevelAnnouncer -1,{ if(BaseLevel == 60) { getitem 909,1; announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } if like this will work ? Quote Link to comment Share on other sites More sharing options...
Tortoise Posted June 15, 2015 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 7 Reputation: 1 Joined: 01/05/15 Last Seen: December 19, 2020 Share Posted June 15, 2015 dont know if it works, u can just give it a try - script LevelAnnouncer -1,{ if(BaseLevel == 60) { announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } - script LevelAnnouncer -1,{ if(BaseLevel == 60) { getitem 909,1; announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } if like this will work ? You can use this: - script LevelAnnouncer -1,{ if(BaseLevel == 175) { getitem 2357,1; getitem 2524,1; getitem 2421,1; getitem 2115,1; announce "Good work! " + strcharinfo(0) + " have reach the max level!",bc_all; end; } } Just edit the lines. Quote Link to comment Share on other sites More sharing options...
Elsa Mist Posted June 15, 2015 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 387 Reputation: 60 Joined: 10/08/13 Last Seen: July 14, 2022 Share Posted June 15, 2015 dont know if it works, u can just give it a try - script LevelAnnouncer -1,{ if(BaseLevel == 60) { announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } - script LevelAnnouncer -1,{ if(BaseLevel == 60) { getitem 909,1; announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } if like this will work ? yes it can work like that. BTW, why dont u just give it a try? its not that hard i believe though. Quote Link to comment Share on other sites More sharing options...
narien123 Posted June 15, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 39 Reputation: 0 Joined: 03/06/15 Last Seen: July 27, 2015 Author Share Posted June 15, 2015 dont know if it works, u can just give it a try - script LevelAnnouncer -1,{ if(BaseLevel == 60) { announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } - script LevelAnnouncer -1,{ if(BaseLevel == 60) { getitem 909,1; announce ""+strcharinfo(0)+" have reach level 60!"; end; } if(BaseLevel == 70) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 70!"; end; } if(BaseLevel == 80) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 80!"; end; } if(BaseLevel == 90) { getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 90!"; end; } if(BaseLevel == 99{ getitem 909,1; announce "Congratulation "+strcharinfo(0)+"have reach level 99!"; end; } } if like this will work ? You can use this: - script LevelAnnouncer -1,{ if(BaseLevel == 175) { getitem 2357,1; getitem 2524,1; getitem 2421,1; getitem 2115,1; announce "Good work! " + strcharinfo(0) + " have reach the max level!",bc_all; end; } } Just edit the lines. the script dont have error , but it's dont work .. Quote Link to comment Share on other sites More sharing options...
Elsa Mist Posted June 15, 2015 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 387 Reputation: 60 Joined: 10/08/13 Last Seen: July 14, 2022 Share Posted June 15, 2015 - script LevelAnnouncer -1,{ OnPCBaseLvUpEvent: set .@rewards$,909; //your rewards IDs here if(BaseLevel == 60) { getitem .@item$,1; announce ""+strcharinfo(0)+" have reach level 60 and received "+getitemname(.@rewards$+ !"; end; } if(BaseLevel == 70) { getitem .@item$,1; announce "Congratulation "+strcharinfo(0)+"have reach level 70 and received "+getitemname(.@rewards$+ !"; end; } if(BaseLevel == 80) { getitem .@item$,1; announce "Congratulation "+strcharinfo(0)+"have reach level 80 and received "+getitemname(.@rewards$+ !"; end; } if(BaseLevel == 90) { getitem .@item$,1; announce "Congratulation "+strcharinfo(0)+"have reach level 90 and received "+getitemname(.@rewards$+ !"; end; } if(BaseLevel == 99{ getitem .@item$,1; announce "Congratulation "+strcharinfo(0)+"have reach level 99 and received "+getitemname(.@rewards$+ !"; end; } } Tested and working perfectly with me Quote Link to comment Share on other sites More sharing options...
Rook1es Posted June 22, 2015 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 97 Reputation: 5 Joined: 06/21/15 Last Seen: September 28, 2024 Share Posted June 22, 2015 hello how about 255 ? can i get the script of it Quote Link to comment Share on other sites More sharing options...
Question
narien123
when player reach level 60 , 70 ,80 , 90 , 99 auto get item ..
and announce the name <name > reach level 60 ...
Link to comment
Share on other sites
7 answers to this question
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.