| Last updated | 3 years ago |
| Total downloads | 253 |
| Total rating | 0 |
| Categories | Mods Client-side |
| Dependency string | odds-Ueberblick-1.0.0 |
| Dependants | 0 other packages depend on this package |
README
Ueberblick
A simple mod that prefixes printt calls with [file:line]
For example these printt calls
[info] [CLIENT SCRIPT] -485
[info] [CLIENT SCRIPT] entity (-5: class C_DynamicProp [-5])
[info] [CLIENT SCRIPT] 2
will look like this:
[info] [CLIENT SCRIPT] [sh_menu_models.gnut:1419] -485
[info] [CLIENT SCRIPT] [sh_menu_models.gnut:1420] entity (-5: class C_DynamicProp [-5])
[info] [CLIENT SCRIPT] [sh_menu_models.gnut:1421] 2
This only changes how printt and the print reference in the root table behaves! Normal print statements will appear unchanged.
You can call the edited print reference with getroottable().print( "s" ). Note that the script has to be marked as untyped.
You should use printt( "s" ) since it's shorter and works in typed scripts as well.