03.01.2015, 14:18
Hey all.
So... Let's suppose I want to create a Dynamic Label Creator.
I define MAX_LABELS.
Create enums about Label:
And that variable.
Ok... So let's suppose we made a variable:
And to make enums with labelid wich represet ID of that Label.
etc..
But, how can I save that ID from that label? I need to write in in a file and load at every sa-mp.exe folder...?
So... Let's suppose I want to create a Dynamic Label Creator.
I define MAX_LABELS.
pawn Код:
#define MAX_LABELS 1000
pawn Код:
enum lInfo
{
LText
Float:LX;
Float:LY;
Float;LZ;
}
pawn Код:
new LabelInfo[MAX_LABELS][lInfo];
pawn Код:
new labelid;
pawn Код:
LabelInfo[labelid][LX]
But, how can I save that ID from that label? I need to write in in a file and load at every sa-mp.exe folder...?