Hello all.

SED, Engine crashes if I run following script :

Code:

ENTITY* testent;
action test_ent {
testent = me;
}

int zahl = 2;

int main() {
...
if (zahl == 2) {
testent.x = 55;
}
...



It crashes this way, but
if I try to do printf("hello?!?!"); instead of testent.x == 55; I get no errors. So what am I doing wrong?

Last edited by nightshade; 12/31/07 22:46.