nobukadnezar Posted July 10, 2012 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
Emistry Posted July 10, 2012 Posted July 10, 2012 OnPCLoginEvent: if( Class == Job_Novice && !BaseExp ){ announce " "+strcharinfo(0)+" joined server.",0; set BaseExp,1; } end; Quote
jTynne Posted July 10, 2012 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
nobukadnezar Posted July 10, 2012 Author 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
Kiritoryu Posted January 11, 2013 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
nanakiwurtz Posted January 11, 2013 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
Question
nobukadnezar
Anyone have idea how to give broadcast welcome message to newly created char?
With their name of course
Regards, Me
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.