nobukadnezar Posted July 10, 2012 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 163 Reputation: 7 Joined: 01/07/12 Last Seen: March 7, 2017 Share Posted July 10, 2012 Hi folks, Anyone have idea how to give broadcast welcome message to newly created char? With their name of course Regards, Me Quote Link to comment Share on other sites More sharing options...
Emistry Posted July 10, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted July 10, 2012 OnPCLoginEvent: if( Class == Job_Novice && !BaseExp ){ announce " "+strcharinfo(0)+" joined server.",0; set BaseExp,1; } end; Quote Link to comment Share on other sites More sharing options...
jTynne Posted July 10, 2012 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 399 Reputation: 199 Joined: 11/09/11 Last Seen: December 14, 2020 Share Posted July 10, 2012 And to build upon Emistry's excellent excerpt, should you/your players desire it to only broadcast once per account.. OnPCLoginEvent: if( Class == Job_Novice && !BaseExp && !#newchar){ announce " "+strcharinfo(0)+" joined server.",0; set BaseExp,1; set #newchar,1; } end; Quote Link to comment Share on other sites More sharing options...
nobukadnezar Posted July 10, 2012 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 163 Reputation: 7 Joined: 01/07/12 Last Seen: March 7, 2017 Author Share Posted July 10, 2012 (edited) Superb. Thanks @emistry you are genius! @jTynne ah i see adding 1 more variable for newly created Account, Thank you guys. Solved~ Edited July 10, 2012 by nobukadnezar Quote Link to comment Share on other sites More sharing options...
Kiritoryu Posted January 11, 2013 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 59 Reputation: 0 Joined: 12/13/12 Last Seen: June 20, 2013 Share Posted January 11, 2013 Btw make a npc for this script? or? I try putting as a npc script but nothing pops out when i come in for the first time Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted January 11, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted January 11, 2013 You can use a floating NPC as header. -(TAB)script(TAB)Greet(TAB)-1,{ end; OnPCLoginEvent: if(Class == Job_Novice && !BaseExp){ announce " "+strcharinfo(0)+" joined server.",0; set BaseExp,1; } end; } 1 Quote Link to comment Share on other sites More sharing options...
Kiritoryu Posted January 11, 2013 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 59 Reputation: 0 Joined: 12/13/12 Last Seen: June 20, 2013 Share Posted January 11, 2013 Thanks alot! it works! Quote Link to comment Share on other sites More sharing options...
Question
nobukadnezar
Anyone have idea how to give broadcast welcome message to newly created char?
With their name of course
Regards, Me
Link to comment
Share on other sites
6 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.