You are missing the { after the IF statement. Also, not equal is != not !==.
on *:join:#: {
if ($nick == bojak) {
msg $chan Welcome master to $chan
}
elseif ($nick != bojak) {
msg $chan Welcome to $chan
}
}
And, because the IF/ELSEIF can only be 2 things, you don't really need the ELSEIF. Just use ELSE because if it's not the first thing, then it has to be the second.
on *:join:#: {
if ($nick == bojak) {
msg $chan Welcome master to $chan
}
else {
msg $chan Welcome to $chan
}
}