1: The compiler shouldn't crash, looks like a bug :] (00000008 is invalid memory).
You can't do things like this:
Code:
textid("[WarBot] Changed your name to " + name + " [L]",id)
String addition doesn't work because they are character arrays. It must be this:
Code:
new temp[128]
format(temp, 128, "[Warbot] Changed your name to %s [L]", name)
textid(temp, id)
Also, unless you reference your helper functions in other places like this:
set_task(... "textid"...) or register_event(..."textid") etc
They shouldn't be public.
__________________