11.01.2018, 12:38
Quote:
|
Код:
if !Inventory_HasItem(i, "Health Insurance")
{
GivePlayerMoney(i, -50);
}
Код:
error 001: expected token: "*then", but found "{"
|
You forgot to add a ( after if and you also forgot it to close with ) at the end.
Код:
if(!Inventory_HasItem(i, "Health Insurance"))
{
GivePlayerMoney(i, -50);
}


