Jump to content
  • 0

Script that welcomes newly created character


Question

Posted (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 by Missingno
Codeboxed

17 answers to this question

Recommended Posts

Posted (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;
 
 
Edited by Missingno
Codeboxed
Posted

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;
  • Upvote 2
Posted

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;
}
Posted


- 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;

}

Posted (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 luck

www.egesiusro.com

 

 

Hi  Zikoziz! Should i make a new.txt? Thanks  /kis2

Edited by Missingno
Codeboxed
Posted (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 :)  /lv  /lv  /lv
Edited by Missingno
Codeboxed
Posted

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;

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...