04.04.2013, 21:30
If i define a bool and dont give to it a value, Whats its default value? true or false? I mean if i have a statement: if (test[playerid]==false) will it be triggered?
public OnFilterScriptInit()
{
new bool:test;
if(test == false) print("Bools init as false.");
else print("Bools init as true.");
}