LCKB
Use Commands without /Whoami - Printable Version

+- LCKB (https://lckb.dev/forum)
+-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109)
+--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193)
+---- Forum: Tutorials & Guides (https://lckb.dev/forum/forumdisplay.php?fid=124)
+----- Forum: Ep4 Guides (https://lckb.dev/forum/forumdisplay.php?fid=125)
+----- Thread: Use Commands without /Whoami (/showthread.php?tid=4675)



- cooldude - 12-23-2020


Edit file Descriptor.cpp 

Find this:

if (gserver->barunsongames_flag && m_pChar->m_admin == 10)

Replace it with this:

if (/*gserver->barunsongames_flag &&*/ m_pChar->m_admin == 10) // No whoami

 




- Veni - 12-23-2020


obviously only if you have admin level of 10.

 

If you want it for everyone that has an admin level (e.g. an GS) than use the following:

 

if (m_pChar->m_admin >= 1)

 

 



edit: some people would actually ask this eventually, so just gonna putting it here..




- Sutz - 12-23-2020


no more whoami x.x thankyou!!

Simple things make one happy




- Reza - 01-12-2021


i think a better solution is what i did where i still use whoami but i have toggle on off and i persist that thru load zone.

 




- Reza - 01-12-2021


the reason i say this tho is because the client has some code here n there for example with strings if you use whoami it show the string index before each string 

having whoami toggle allows u to show and hide the strings in menus

also has other benefits.