Frictional Games Forum (read-only)

Full Version: Monster sawn when picked up note dosnt work
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey I have searched for this a while now but cant find how to atciate monster when picked up note Sad any ides

PHP Code:
void OnStart()
{
SetEntityCallbackFunc("NOTENAME""OnPickup");
}

void OnPickup(string &in asEntitystring &in type)
{
  
SetEntityActive("grunt1"true);
  
SetEntityActive("grunt2"true);



this shall work Smile

ty Smile