From e8a141f66695aa07eb3ce81b440256a2c633a28e Mon Sep 17 00:00:00 2001 From: JezuzLizard Date: Sat, 25 Jul 2020 04:50:26 -0700 Subject: [PATCH] Update debugging_guide.md --- debugging_guide.md | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/debugging_guide.md b/debugging_guide.md index 1bde114..a5748d2 100644 --- a/debugging_guide.md +++ b/debugging_guide.md @@ -81,6 +81,14 @@ Foreaches do not appear in the 2014 dump instead they look like this: { } ``` +**The 2014 dump never has complete data in the notify inputs:** +``` +**Example** +self notify( "damage" ); +However, the the waittill may look like this: +self waittill( "damage", who ); +Always check against cerberus for missing inputs for notifies +``` ``` For loops do not appear in the 2014 dump and while loops are used instead Replace them with for loops but always check the info.md for compiler limitations @@ -88,16 +96,4 @@ Replace them with for loops but always check the info.md for compiler limitation If you need more help contact me on my Discord username JezuzLizard#7864. -**Common Errors** - -Infinite While Loop Without Wait: - -When its not possible to connect to the server but its running that means there is an infinite loop with no wait active. - -This can also happen ingame but the zombies freeze and the ammo counter freezes. - -This can also happen when a client connects so controls are frozen. - -This can also happen with a blackscreen that doesn't pass. -