Jump to content
  • 0

Secret Account with commands


Balmung

Question


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   2
  • Joined:  11/08/12
  • Last Seen:  

Hello!

I would like to have a secret account (with a "legit" character) but still have all my commands. However, I dont want my name to appear as Kocha (Administrator:99). I just want it to be blank as if I was a normal character.

Some things that I have already tried are making a lvl 100 group and adding a random command to it. Then going into msg_athena and changing 355: Administrator to 355: . Ive also tried to // it as well but it just shows my character as having (??) beside the name.

Any suggestions?

Link to comment
Share on other sites

15 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  25
  • Reputation:   12
  • Joined:  12/03/12
  • Last Seen:  

Give members a title and give yourself the same title.

Or you know, stop being corrupt.

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  400
  • Reputation:   5
  • Joined:  12/05/11
  • Last Seen:  

Simple.

Just make a script and that NPC/Script can be use by whispering according to specific Account ID.

You can be corrupted any way you want and we here just helping. But me, just giving the ideas.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   2
  • Joined:  11/08/12
  • Last Seen:  

Lol. Its not for me to be corrupt. I am the server owner. I will always be the server owner. Whether im on my secret account or not.

Also, allow me to clarify. When I say legit character I don't mean LEGIT LEGIT. I just mean a secret account that has my admin powers but to where I can sit with my good friends and not be bothered with AMG ITS BALMUNG SERVER OWNER PEW PEW PEW, which I don't have a problem with, but I would like a chance to sit down and talk.

Also, please don't assume things such as corruption as I take that very seriously. I have already taken MANY steps to prevent it. Just because I, personally, would like an account like this does not mean I will corrupt my own server. If I wanted to give someone something I would do it on my GM account because it is MY server.

Now, back on topic:

Nameless2you: Again, if you don't have a suggestion don't post here please.

Anycker, I don't understand your suggestion. Clarify more if you will.

uDe: I don't want to pm an npc EVERY time I log into that account. Any other ways?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

wear a custom item that have adjgroup 99 code on it.

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

atcommand.c

Below

ACMD_FUNC(who)

Search and replace (multiple)

if (pc_get_group_id(pl_sd) > 0) // Player title, if exists

to

if (pc_get_group_id(pl_sd) > 1) // Player title, if exists

Then recompile. All players with group ID 0 or 1 wouldn't have title, so you could play with your player group ID 1 with all command.

@nanakiwurtz

@who display title when using adjgroup even if it's in the session.

Edited by Capuche
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   2
  • Joined:  11/08/12
  • Last Seen:  

Thank you! Finally. Could I change it to 100? Because I have the other Commands set for other GMs and I use level one for PGM (Player Game Master) where game masters can play regular characters but still have some commands like broadcast ect ect

Anyway, if I set it to 100, would it make anything below 100 have no name? Or just 100 itself.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

However, I dont want my name to appear as Kocha (Administrator:99). I just want it to be blank as if I was a normal character.

Where is it that your name displays like that?

- in-game when you mouse-over your character?

- @who command?

- some NPC?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  25
  • Reputation:   12
  • Joined:  12/03/12
  • Last Seen:  

Another option is just disable @who. It doesn't work on large servers anyway.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   2
  • Joined:  11/08/12
  • Last Seen:  

@who command.

I would like to keep @who is possible.

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

Thank you! Finally. Could I change it to 100? Because I have the other Commands set for other GMs and I use level one for PGM (Player Game Master) where game masters can play regular characters but still have some commands like broadcast ect ect

Anyway, if I set it to 100, would it make anything below 100 have no name? Or just 100 itself.

if (pc_get_group_id(pl_sd) > 0 && pc_get_group_id(pl_sd) != 100) // Player title, if exists

Doesn't display title for group ID 100 or normal player.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

@who command.

I would like to keep @who is possible.

trunk/src/map/atcommand.c look for the section that starts with

/*==========================================
* Display list of online characters with
* various info.
*------------------------------------------*/
ACMD_FUNC(who)
{

There will be 3 lines like this:

if (pc_get_group_id(pl_sd) > 0) // Player title, if exists

Edit all 3 of those lines to say "if their group_id is greater than 0 and their account_id is not <your account_id>". Then your account_id will be excluded from displaying the Player Title.

if (pc_get_group_id(pl_sd) > 0 && pl_sd->status.account_id != 2000000) // Player title, if exists

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   2
  • Joined:  11/08/12
  • Last Seen:  

ah even better! Now my administrator cant have one :P

Thanks Brian

But I should have probably pointed out that I use eathena. Mind telling me how to edit it for that?

Sorry, that was my bad

Also thanks Capuche

Edited by Balmung
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

In atcommand.c search ACMD_FUNC(who)

Replace

if (pl_GM_level > 0) {

to

if (pl_GM_level > 0 && pl_sd->status.account_id != 2000000) {

(eathena)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   2
  • Joined:  11/08/12
  • Last Seen:  

You make life so much easier. Thank you so much <3

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...