Hi
How to get different info from one cvar (in cfg file). I mean how to transform:
Code:
some_cvar "lol"
some_cvar "lol2"
some_cvar "lol3"
some_cvar "lol4"
(this code is written in config/some_cvar.cfg)
to
Code:
cvar [0] = lol
cvar [1] = lol2
cvar [2] = lol3
cvar [3] = lol4
(And plugin transform it to this form)
Sorry 4 bad description but I had no idea how to tell this.
__________________