Frictional Games Forum (read-only)
Monster sawn when picked up note dosnt work - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Monster sawn when picked up note dosnt work (/thread-12146.html)



Monster sawn when picked up note dosnt work - jessehmusic - 12-28-2011

Hey I have searched for this a while now but cant find how to atciate monster when picked up note Sad any ides




RE: Monster sawn when picked up note dosnt work - Quotentote - 12-28-2011

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

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



this shall work Smile




RE: Monster sawn when picked up note dosnt work - jessehmusic - 12-28-2011

ty Smile