Quote:
Originally posted by royce
yah but for example
if (playertouchsme) {
setlevel2 onlinestartlocal.nw,x,y;
}
if (playertouchsme && exbeatboss) {
setlevel2 beathim.nw,x,y;
}
if you still had the flag would it warp you to onlinestartlocal? also should i put the flag part in the begining of the script or it doesnt matter?
|
if (playertouchsme) {
if (exbeatboss)
setlevel2 beathim.nw,x,y;
else
setlevel2 onlinestartlocal.nw,x,y;
}