18.08.2018, 21:45
So, i have this array:
Enum:
I want to select a random destionation and create a checkpoint if i type /destination, but i don't know how to loop the array i created, help?
And if possible, show the random name destionation, ex: "You teleported to Bank"
pawn Код:
new const g_LocationData[][e_LocData] =
{
{"Bank", 2315.952880, -1.618174, 26.742187},
{"LS Atrium", 1710.433715, -1669.379272, 20.225049}
};
pawn Код:
enum e_LocData
{
e_LocName[32],
Float:e_LocX,
Float:e_LocY,
Float:e_LocZ
};
And if possible, show the random name destionation, ex: "You teleported to Bank"