
10-24-2001, 11:31 PM
|
|
RadioActive Monkeeh
|
 |
Join Date: Apr 2001
Location: dirty south
Posts: 2,112
|
|
|
if the thing where you warp to a sparring zone doesnt work then
you can try this (not tested.. just made it up)
if (playerdies) {
setstring deadlevel,#L;
setstring deadx,#v(playerx);
setstring deady,#v(playery);
}
if (playerenters) {
this.x=strtofloat(#s(deadx));
this.y=strtofloat(#s(deady));
if (this.x>-1 && this.y>-1) {
setlevel2 #s(deadlevel),playerx,playery;
}
else {
setstring deadlevel,;
setstring deadx,-1;
setstring deady,-1;
}
} |
|
|
|