From 7d0e3db377b84f710d66ddedc482be98a0599622 Mon Sep 17 00:00:00 2001 From: HugoBDesigner Date: Tue, 14 Jul 2026 21:32:19 -0300 Subject: [PATCH 1/2] feat[p2ce]: SetScriptThinkFunction for upcoming PR --- fgd/bases/BaseEntityIO.fgd | 1 + 1 file changed, 1 insertion(+) diff --git a/fgd/bases/BaseEntityIO.fgd b/fgd/bases/BaseEntityIO.fgd index d03fc31c2..d54f838d9 100644 --- a/fgd/bases/BaseEntityIO.fgd +++ b/fgd/bases/BaseEntityIO.fgd @@ -25,6 +25,7 @@ input RunScriptFile[VSCRIPT](string) : "Execute a game script file from disk." input RunScriptCode[VSCRIPT](script) : "Execute a string of script source code." input CallScriptFunction[VSCRIPT](string) : "Execute the given function name." + input SetScriptThinkFunction[VSCRIPT](string) : "Sets the current think function of the script." input PassUser1(string) : "Causes this entity's OutUser1 output to be fired, passing along the parameter unchanged." input PassUser2(string) : "Causes this entity's OutUser2 output to be fired, passing along the parameter unchanged." From 12e02047f9f7b5f93bc94156752e223bc67829a2 Mon Sep 17 00:00:00 2001 From: HugoBDesigner Date: Wed, 15 Jul 2026 13:44:10 -0300 Subject: [PATCH 2/2] feat[p2ce]: ClearScriptThinkFunction for upcoming PR --- fgd/bases/BaseEntityIO.fgd | 1 + 1 file changed, 1 insertion(+) diff --git a/fgd/bases/BaseEntityIO.fgd b/fgd/bases/BaseEntityIO.fgd index d54f838d9..e213ca4d9 100644 --- a/fgd/bases/BaseEntityIO.fgd +++ b/fgd/bases/BaseEntityIO.fgd @@ -26,6 +26,7 @@ input RunScriptCode[VSCRIPT](script) : "Execute a string of script source code." input CallScriptFunction[VSCRIPT](string) : "Execute the given function name." input SetScriptThinkFunction[VSCRIPT](string) : "Sets the current think function of the script." + input ClearScriptThinkFunction[VSCRIPT](string) : "Clears the current think function of the script." input PassUser1(string) : "Causes this entity's OutUser1 output to be fired, passing along the parameter unchanged." input PassUser2(string) : "Causes this entity's OutUser2 output to be fired, passing along the parameter unchanged."