Page 1 of 1

Frob() at chairs

PostPosted: Sun Feb 06, 11 2:15 am
by DxPlayer
Code: Select all
class DRClassRoomChair extends Seat;

var Bool bFrobbedAlready;

// ----------------------------------------------------------------------
// Frob()
// ----------------------------------------------------------------------
function Frob(Actor Frobber, Inventory frobWith)
{

   local DeusExPlayer Player;
   Player = DeusExPlayer(Frobber);
   
   Super.Frob(Frobber, frobWith);
   
   log("IT TICKLES!!!!");


}



It just does not work! Any ideas? :p


PS:

DUH!
Nervermind bPushable was the trouble maker. Set it to false if you want your deco to be "frobbed" properly.

PostPosted: Sun Feb 06, 11 11:11 am
by Dae
I see you like to post questions and then answer them yourself :P

Keep up the good work!