31.01.2016, 10:56
If I have this enum:
Is there any way that I can get the value of the first term? Example
Thank you for your time
Код:
enum cData { cSlot1, cSlot2, cSlot3 } new ChannelInfo[MAX_PLAYERS][cData];
Код:
ChannelInfo[playerid][cSlot1] = 123 ChannelInfo[playerid][cSlot2] = 456 ChannelInfo[playerid][cSlot1] = 789 // When a player types /mychannels, can I do this? for(new i;i<3;i++) { new string[128]; format(string,sizeof(string),"Slot: %d; Channel: %d",i,ChannelInfo[playerid][j]) SendClientMessage(playerid,-1,string); }