[ZM] AnyLocker - Chat based locker for T6 Zombies Maps
-
Chat based locker system for T6ZM servers.
Currently pretty buggy and messy code, but once I have ironed out a few more of these kinks I'll post source.
Allows users to save their current weapon to external file for 4000 points. Each of the 6 maps has it's own locker folder holding user weapons.Discord:
Atmoist#7178Compiled Code:
https://github.com/Atmosphericss/AnyLocker/releasesRequirements, usage (and source in future):
https://github.com/Atmosphericss/AnyLocker -
is there a tutorial on how to install this? I tried to get the chat bank to work too and it didn't.
-
Atmoist Nice release, but I think you should include an install guide.
-
Atmoist I see you compiled this script with Xensik's gsc-tool. You do realize you can get correct decompiled output using the Xensik decompiler on any Xensik compiled GSC? Just confused why you didn't provide source in the first place.
Anyway from looking at the decompiled output I noticed a mistake.
getdvarintdefault( dvar, value ) { if ( dvar == "" ) return value; else return getdvarint( dvar ); }
should be
getdvarintdefault( dvar, value ) { if ( getDvar( dvar ) == "" ) return value; else return getdvarint( dvar ); }
from your usage dvar(string) will never be blank so it makes more sense for it to getDvar() if the dvar(dvar) is blank.
-
the guide is linked in the post already
https://github.com/Atmosphericss/AnyLockerAtmoist Nice release, would appreciate if you would share the source
-
JezuzLizard Ah okay thank you, I'm pretty new to this so I thought it would probably be best if I try sort out my messy and buggy code before releasing the source properly.
Thanks for telling me about the error, I'll change it now