Here is my codes which are warned.
PHP Code:
switch(key)
{
case 1:
if (pweapon == CSW_M4A1)
{
client_print(id, print_chat, "[Ice-Action] aaa!")
} else if (pmoney >= 3100)
{
cs_set_user_money(id, pmoney - 3100, 1)
give_item(id, "weapon_m4a1")
} else if (pmoney << 3100)
{
client_print(id, print_chat, "[Ice-Action] bbb!")
}
It warned at this line:
PHP Code:
} else if (pmoney >= 3100)
I know WARNINGs do not affect compiling but I don't want to get these.
Thx