Author Topic: Change Admin level  (Read 3077 times)

0 Members and 1 Guest are viewing this topic.

Offline Punjabi

  • Made Man
  • ***
  • Posts: 147
  • Config Editor
    • View Profile
    • PUN Clan
Change Admin level
« on: August 14, 2008, 12:04:05 pm »
Hi,
can anyone tell me how to change admin level from 10 to 1337 from mirc or by any other way............
GOD BLESS ALL..<<Founder of PUN Clan.....Born to fight and Kill..>>

Windlord

  • Guest
Re: Change Admin level
« Reply #1 on: August 14, 2008, 01:09:16 pm »
I think you are using WSV

In WSV you'll need to use

Code: [Select]
/hadd WSV.Admins Punjabi 1337

Offline Badboy

  • Street Thug
  • *
  • Posts: 12
    • View Profile
Re: Change Admin level
« Reply #2 on: August 18, 2008, 03:13:48 am »
 :D :D hi windlord hi punjabi...
Windlord, but where i have to put it in remote????
« Last Edit: August 18, 2008, 03:16:18 am by Badboy »

Windlord

  • Guest
Re: Change Admin level
« Reply #3 on: August 18, 2008, 11:42:10 am »
That isn't a script ;)

Type it in your mIRC.
btw the script automatically sets you to level 10 when you join.
Therefore you need to alter the scripts if you want to be level 1337.

Change
Code: [Select]
on *:SIGNAL:vcmp.player.join:{
  ; $1 = ServerID, $2 = PlayerID, $3 = PlayerName
  vcmp.addchat $1 --> $3 joined the game.
  vcmp.playerlistupdate $1

  !.signal vcmp.join $1-

  if (c isin $chan(%echochan).mode) mode %echochan -c
  c.echorand $3
  echo.msg  $+ $c.echoa($3,$3) $+  3joined the game.
  WSV.savehashes
  WSV.loadhashes
  vcmp.announce $1 $2 ~w~Welcome to ~n~~o~ $+ %servername
  vcmp.msg $1 $2 Welcome, $3 to %servername
  if ($vcmp.players($1) == 1) {
    !.timernews 0 150 /WSV.news
    ;!.timermap 0 1800 /WSV.mapchange
  }
  if ($3 == %owner) hadd -m WSV.admins $3 10
  !.timer 1 3 /WSV.onjoin $1-
}
into
Code: [Select]
on *:SIGNAL:vcmp.player.join:{
  ; $1 = ServerID, $2 = PlayerID, $3 = PlayerName
  vcmp.addchat $1 --> $3 joined the game.
  vcmp.playerlistupdate $1

  !.signal vcmp.join $1-

  if (c isin $chan(%echochan).mode) mode %echochan -c
  c.echorand $3
  echo.msg  $+ $c.echoa($3,$3) $+  3joined the game.
  WSV.savehashes
  WSV.loadhashes
  vcmp.announce $1 $2 ~w~Welcome to ~n~~o~ $+ %servername
  vcmp.msg $1 $2 Welcome, $3 to %servername
  if ($vcmp.players($1) == 1) {
    !.timernews 0 150 /WSV.news
    ;!.timermap 0 1800 /WSV.mapchange
  }
  if ($3 == %owner) hadd -m WSV.admins $3 1337
  !.timer 1 3 /WSV.onjoin $1-
}

Note the if ($3 == %owner) hadd -m WSV.admins $3 1337 part