GZDoom freezes when I die.
Posted: Sat Jun 24, 2006 6:30
When I die GZDoom seems to freeze. I don't know if its my ACS or the game.
Here is the Global ACS Script
Here is the Global ACS Script
Code: Select all
Script 1 ENTER
{
If(Checkinventory("QuestItem1") < 1)
{
clearinventory();
giveinventory("DispersionPistol", 1);
setweapon("DispersionPistol");
giveinventory("QuestItem1",1);
}
}
Script 2 RESPAWN
{
clearinventory();
giveinventory("DispersionPistol", 1);
setweapon("DispersionPistol");
giveinventory("QuestItem1",1);
}