23.11.2011, 08:59
I'm kind of wanting to know something, nothing to do with me having a problem though yeah.
If you create a ENUM and store some values e.g
Running some code like this makes my AMX size about 3000 kb lol, why is this occurring? How can I prevent it?
If you create a ENUM and store some values e.g
pawn Код:
enum E_TEST
{
Text3D: E_LABEL = Text3D: INVALID_3DTEXT_ID,
Text: E_TEXTDRAW = Text: INVALID_TEXT_DRAW
}
new
e_TestData[20][E_TEST] // Giving it some index's just for the sake of it!
;