Nightmare-
09-09-2004, 11:58 PM
I think a lot of people would be happier with the inv system if there was a way to select the last loadout you chose. I usually only use one loadout per map, and I'm sure many others do too.
Right now pressing shift only refills your ammo and health. Can't you just keep track of the last loadout selected and pressing shift will select that loadout? It seems like this would be really easy to code.
KnightMare
09-10-2004, 12:01 AM
I really want this and the last used spawn point aswell
Nightmare-
09-10-2004, 01:15 AM
Thrax said a few days ago they might improve the spawn system, but I haven't heard anything from the devs about last loadout :(
Undisciplined
09-10-2004, 03:05 AM
Yep, ammo refill and health injection should be done by walking over the pad, tapping shift should buy your last favorite.
Nightmare-
09-10-2004, 03:13 AM
ammo refill and health injection should be done by walking over the pad
I think it's probably too late to make a change like that, but pressing shift to buy the last favorite is a really small change. And pressing shift would always refill health and ammo, just in addition it would buy your last loadout.
For the devs:
Tell me if I'm wrong but the code for this seems very simple. Here's what seems to me you would need to do:
int last_loadout = -1;
...
on_loadout_key_press() {
if(last_loadout > 0)
select_loadout(last_loado ut);
else
refill_ammo_and_health();
}
select_loadout(int new_loadout) {
last_loadout = new_loadout;
...
}
Nightmare-
09-10-2004, 06:24 PM
Can we get a response from a dev?