Quick question... Does it change anything if I put
function servercmdhelloworld(%c)
{
if(%c.isAdmin)
{
messageall(' ',"HELLO WORLD!");
}
else
{
messageall(' ',"Hello World!");
}
instead of
function ServerCmdHelloWorld(%c)
{
if(%c.isAdmin)
{
MessageAll(' ',"HELLO WORLD!");
}
else
{
MessageAll(' ',"Hello World!");
}
In the first one, there wasn't any capital letters and in the second there was. (messageall on first one and MessageAll on second.) does that change anything?