Princess_anne Posted March 2, 2014 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 29 Reputation: 0 Joined: 11/22/12 Last Seen: June 29, 2015 Share Posted March 2, 2014 (edited) Can someone help me pls... i got this script from Emistry OnPCLoginEvent: if(Class == Job_Novice && !BaseExp){ announce " "+strcharinfo(0)+" joined server.",0; set BaseExp,1; } end; } but i dunnow how to use that :'( Thanks in Advance Edited March 17, 2014 by Missingno Codeboxed Quote Link to comment Share on other sites More sharing options...
krisnx Posted March 2, 2014 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 104 Reputation: 4 Joined: 06/23/12 Last Seen: October 20, 2022 Share Posted March 2, 2014 (edited) you can read here http://rathena.org/wiki/Adding_a_Script Edited March 2, 2014 by nostafu Quote Link to comment Share on other sites More sharing options...
Aureon Posted March 2, 2014 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 281 Reputation: 14 Joined: 10/14/13 Last Seen: October 9, 2017 Share Posted March 2, 2014 (edited) Don't forget to put the x,y location before that script that you have. Edited March 2, 2014 by Ares Quote Link to comment Share on other sites More sharing options...
Princess_anne Posted March 2, 2014 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 29 Reputation: 0 Joined: 11/22/12 Last Seen: June 29, 2015 Author Share Posted March 2, 2014 Thank u Nostafu & Ares... gonna try it now it didnt work haha Quote Link to comment Share on other sites More sharing options...
Zikoziz Posted March 2, 2014 Group: Members Topic Count: 60 Topics Per Day: 0.01 Content Count: 207 Reputation: 16 Joined: 12/19/13 Last Seen: Thursday at 08:24 PM Share Posted March 2, 2014 (edited) Hi It tries with this if(Sex == 0) announce "* Welcome Girl " +strcharinfo(0) + "It has begun his adventure.*",bc_all,0xFC99D1; else announce "* Welcome Boy " +strcharinfo(0) + "It has begun his adventure.*",bc_all,0x87CEFA; Good luckwww.egesiusro.com Edited March 17, 2014 by Missingno Codeboxed Quote Link to comment Share on other sites More sharing options...
sandbox Posted March 2, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: March 31 Share Posted March 2, 2014 - script WelcomeNewbie -1,{ OnPCLoginEvent: if(Class == Job_Novice && !BaseExp) { announce strcharinfo(0)+" joined the server!",0; set BaseExp,1; } end; } Quote Link to comment Share on other sites More sharing options...
CursorX Posted March 3, 2014 Group: Members Topic Count: 66 Topics Per Day: 0.02 Content Count: 168 Reputation: 0 Joined: 11/20/13 Last Seen: November 23, 2021 Share Posted March 3, 2014 hi what if the login char can read that announcmeent instead of all map.. i min he/she can only read the welcome message Quote Link to comment Share on other sites More sharing options...
Patskie Posted March 3, 2014 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: November 10, 2024 Share Posted March 3, 2014 hi what if the login char can read that announcmeent instead of all map.. i min he/she can only read the welcome message - announce strcharinfo(0)+" joined the server!",0; + announce strcharinfo(0)+" joined the server!",bc_self; 2 Quote Link to comment Share on other sites More sharing options...
CursorX Posted March 3, 2014 Group: Members Topic Count: 66 Topics Per Day: 0.02 Content Count: 168 Reputation: 0 Joined: 11/20/13 Last Seen: November 23, 2021 Share Posted March 3, 2014 is this correct? Welcome to ServerRO PlayerName!, Enjoy Playing!~ announce "Welcome to ServerRO "+strcharinfo(0)+"!, Enjoy Playing!~",bc_self; Quote Link to comment Share on other sites More sharing options...
sandbox Posted March 4, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: March 31 Share Posted March 4, 2014 Yup, should work properly Quote Link to comment Share on other sites More sharing options...
CursorX Posted March 4, 2014 Group: Members Topic Count: 66 Topics Per Day: 0.02 Content Count: 168 Reputation: 0 Joined: 11/20/13 Last Seen: November 23, 2021 Share Posted March 4, 2014 hi how to change this into 1 char per account? - script WelcomeNewbie -1,{ OnPCLoginEvent: if(Class == Job_Novice && !BaseExp) { announce "Welcome to ServerRO "+strcharinfo(0)+"!, Enjoy Playing!~",bc_self; set BaseExp,1; } end; } Quote Link to comment Share on other sites More sharing options...
sandbox Posted March 4, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: March 31 Share Posted March 4, 2014 - script WelcomeNewbie -1,{ OnPCLoginEvent: if(Class == Job_Novice && !BaseExp && !#Welcome) { announce "Welcome to ServerRO "+strcharinfo(0)+"!, Enjoy Playing!~",bc_self; set BaseExp,1; #Welcome = 1; } end; } Quote Link to comment Share on other sites More sharing options...
Princess_anne Posted March 5, 2014 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 29 Reputation: 0 Joined: 11/22/12 Last Seen: June 29, 2015 Author Share Posted March 5, 2014 (edited) Hi It tries with this if(Sex == 0) announce "* Welcome Girl " +strcharinfo(0) + "It has begun his adventure.*",bc_all,0xFC99D1; else announce "* Welcome Boy " +strcharinfo(0) + "It has begun his adventure.*",bc_all,0x87CEFA; Good luckwww.egesiusro.com Hi Zikoziz! Should i make a new.txt? Thanks Edited March 17, 2014 by Missingno Codeboxed Quote Link to comment Share on other sites More sharing options...
Zikoziz Posted March 5, 2014 Group: Members Topic Count: 60 Topics Per Day: 0.01 Content Count: 207 Reputation: 16 Joined: 12/19/13 Last Seen: Thursday at 08:24 PM Share Posted March 5, 2014 HiAdd it at the end of a training of novice, before entering to prontera.I use it this way, give him importance to the advertisement Quote Link to comment Share on other sites More sharing options...
Princess_anne Posted March 17, 2014 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 29 Reputation: 0 Joined: 11/22/12 Last Seen: June 29, 2015 Author Share Posted March 17, 2014 (edited) this script is working OnPCLoginEvent: if(Class == Job_Novice && !BaseExp) { announce strcharinfo(0)+ "has joined server RO! Welcome to the server!",0; set BaseExp,1; } end; } but my prob is... i wanna put some colors on that text.. i tried, but it didnt work lol... can someone help me again? BTW, thanks for responding Edited March 17, 2014 by Missingno Codeboxed Quote Link to comment Share on other sites More sharing options...
Patskie Posted March 17, 2014 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: November 10, 2024 Share Posted March 17, 2014 Colors are in 0xRRGGBB format. If you don't know what you are doing then i suggest you search for a tool in the internet. There are too many tools sites for this. - announce strcharinfo(0)+ "has joined server RO! Welcome to the server!",0; + announce strcharinfo(0)+ "has joined server RO! Welcome to the server!",0,0xFFFF00; Quote Link to comment Share on other sites More sharing options...
Aureon Posted March 17, 2014 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 281 Reputation: 14 Joined: 10/14/13 Last Seen: October 9, 2017 Share Posted March 17, 2014 (edited) announce strcharinfo(0)+"has joined server RO! Welcome to the server!",0,0x00ff00; try this one Edited March 17, 2014 by Ares Quote Link to comment Share on other sites More sharing options...
Princess_anne Posted March 17, 2014 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 29 Reputation: 0 Joined: 11/22/12 Last Seen: June 29, 2015 Author Share Posted March 17, 2014 Thank you!!!! it works Quote Link to comment Share on other sites More sharing options...
Question
Princess_anne
Can someone help me pls...
i got this script from Emistry
Codeboxed
Link to comment
Share on other sites
17 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.