I need to change the strifle powerup cogs to allow the player to pick up 2 rifles, now would I just change the part that says
to something like
Is there anything else I need to change? (besides the items.dat, I've already done that)
------------------
Look for my current project, The Force in Your Soul.
Last week I cudn't evn spel grajuat, but now I is one.
*Takes out his blaster and fires shots at the wall, the blastmarks leave the words "S-TROOPER WUZ 'ERE!!!"
Code:
touched: player = GetSourceRef(); powerup = GetSenderRef(); if((GetInv(player, bin) == 0) || (GetInv(player, ammobin) < GetInvMax(player, ammobin))) { TakeItem(powerup, player); } Return;
to something like
Code:
touched: player = GetSourceRef(); powerup = GetSenderRef(); if((GetInv(player, bin) < 2) || (GetInv(player, ammobin) < GetInvMax(player, ammobin))) { TakeItem(powerup, player); } Return;
Is there anything else I need to change? (besides the items.dat, I've already done that)
------------------
Look for my current project, The Force in Your Soul.
Last week I cudn't evn spel grajuat, but now I is one.
*Takes out his blaster and fires shots at the wall, the blastmarks leave the words "S-TROOPER WUZ 'ERE!!!"