17.02.2012, 10:01
Actually I think I know how would you be able to do it. Use ZCMD. Check has he typed all params. Then you strcmp to check is second parameter same as any variable. If yes you set it. But you can't use typed enum from command. Ex.
Hope you understood and that that's what you are looking for.
pawn Код:
if(!strcmp(param2,"ID",true)) PlayerInfo[param1][ID] = param3;
else if(!strcmp(param2,"Kills",true)) PlayerInfo[param1][Kills] = param3;
...