Jump to content
  • 0

GM second password - special edition


cmsm94

Question


  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.02
  • Content Count:  170
  • Reputation:   5
  • Joined:  08/11/13
  • Last Seen:  

I need a script for when a GM lv 60 and above login they will need to write the password

THE PASSWORD IS ONLY SET BY ADMIN

ALL GM PASSWORD IS THE SAME 

 

Basically i want a script that allow GM lvl 60 and above to login 2nd password same 2nd password. Which is set by admin.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  44
  • Reputation:   5
  • Joined:  12/06/11
  • Last Seen:  


OnPcLoginEvent:

if(getgroupid() >= 60){

mes "Plz put the GM password";

next;

input @input$;

if(@input$ != .password$){

atcommand "@kick "+strcharinfo(0);

end;

}

close;

}

OnInit:

set .password$,"password";

end;

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

On the off chance that you happen to be using eAthena instead of rAthena you can always use my super old and outdated script here...

 

http://code.google.com/p/ea-addicts/downloads/detail?name=gmprotectcleanwithoutaddon.txt&can=2&q=

 

Change gothic to whatever password...

set $@Password$, "gothic";

 

Change 5 to 60...

getgmlevel() >= 5

 

@Khazou: That is flawed you need to mute the player or something to prevent them from warping away with Alt+(1-0)...

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...