OK, I'm sick of this, it made me confused.
I read in some codes and tutorials (especially Exolent's tutorial about enums):
Code:
// Top
#define WhatEver 49162
public anything(id)
{
set_task(0.1, "fw_fw", id + WhatEver)
}
public fw_fw(bla)
{
id = bla - WhatEver
// Code ...
}
Why do they sum the index of the player (id) with the define (WhatEver) if they, eventually, will get the same player id, and they never re-use the define.
It's just confusing!!!!
__________________