OK that works for a little...
I'm basically doing:
Code:
public test( id )
{
new iVal, sz[32];
for ( new i = 1; i < 145; i++ )
{
iVal = pev( id, i, sz, 31 );
server_print( "[%d] %d", i, iVal );
}
}
I get invalid return type when i is greater than 11 and i also get the error "unknown pev index or return combination 12"
This is really confusing, why won't pev just work in dod?
__________________