* Cleaned some remaining Exile 3 dialogs (Ishad Nha)

* Added a way to force kill the party with the Kill node (if ex1b is set to 2, then force kill. Editor node text updated.)
* Implemented Home, Page Up/Down and End for diagonal movement (a side effect is that the Keypad diagonal movement is now working with either Numlock on or off). That should help with keyboard missing numkeypad.

Chokboyz

git-svn-id: http://openexile.googlecode.com/svn/trunk@137 4ebdad44-0ea0-11de-aab3-ff745001d230
This commit is contained in:
Chokboyz
2009-11-08 14:51:07 +00:00
parent 7a4b317bf5
commit 14a8a73700
5 changed files with 38 additions and 14 deletions

View File

@@ -2114,11 +2114,11 @@ void affect_spec(short which_mode,special_node_type cur_node,short cur_spec_type
}
else
if(party.stuff_done[309][1] == 0){//legacy behavior
adven[i].kill(spec.ex1a + 2 + 10);
adven[i].kill(spec.ex1a + ((spec.ex1b == 2)? 22 : 12));
}
else{//kill only present pc
if ((adven[i].main_status > MAIN_STATUS_ABSENT) && (adven[i].main_status < MAIN_STATUS_SPLIT))
adven[i].kill(spec.ex1a + 2 + 10);
adven[i].kill(spec.ex1a + ((spec.ex1b == 2)? 22 : 12));
}
}