Posts: 120
Threads: 32
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
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
Posts: 114
Threads: 3
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Oct 2014
Reputation:
0
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..
Posts: 1,163
Threads: 160
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
no more whoami x.x thankyou!!
Simple things make one happy
Posts: 57
Threads: 2
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
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.
Posts: 57
Threads: 2
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
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.