Princess_anne Posted March 2, 2014 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
krisnx Posted March 2, 2014 Posted March 2, 2014 (edited) you can read here http://rathena.org/wiki/Adding_a_Script Edited March 2, 2014 by nostafu Quote
Aureon Posted March 2, 2014 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
Princess_anne Posted March 2, 2014 Author Posted March 2, 2014 Thank u Nostafu & Ares... gonna try it now it didnt work haha Quote
Zikoziz Posted March 2, 2014 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
sandbox Posted March 2, 2014 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
CursorX Posted March 3, 2014 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
Patskie Posted March 3, 2014 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
CursorX Posted March 3, 2014 Posted March 3, 2014 is this correct? Welcome to ServerRO PlayerName!, Enjoy Playing!~ announce "Welcome to ServerRO "+strcharinfo(0)+"!, Enjoy Playing!~",bc_self; Quote
CursorX Posted March 4, 2014 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
sandbox Posted March 4, 2014 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
Princess_anne Posted March 5, 2014 Author 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
Zikoziz Posted March 5, 2014 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
Princess_anne Posted March 17, 2014 Author 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
Patskie Posted March 17, 2014 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
Aureon Posted March 17, 2014 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
Question
Princess_anne
Can someone help me pls...
i got this script from Emistry
Codeboxed
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.