Vice City Multiplayer

VC:MP => mIRC/pawn Scripting => Topic started by: Kush on April 26, 2011, 10:44:19 PM

Title: Login and Level System
Post by: Kush on April 26, 2011, 10:44:19 PM
Hey all,

How would I go about implementing a Login and a Leveling Up System on my server?

Would I need to use mIRC? If so, can someone post up a quick explanation of how to do it?

I'm familiar with Pawno, but I've been reading the forums and i don't believe it can be done with it.

Thanks,

Kush.
Title: Re: Login and Level System
Post by: BIG[H] on April 27, 2011, 04:46:38 AM
Use Gups

http://thijn.vrocker-hosting.co.uk/vcmp/GUPS1.16a.rar
Title: Re: Login and Level System
Post by: stormeus on April 27, 2011, 01:06:19 PM
Quote from: BIG[H] on April 27, 2011, 04:46:38 AM
Use Gups

http://thijn.vrocker-hosting.co.uk/vcmp/GUPS1.16a.rar

BIG, he said mIRC. GUPS is for Pawn.
Title: Re: Login and Level System
Post by: BIG[H] on April 27, 2011, 03:29:07 PM
   
QuoteLogin and Level System

How would I go about implementing a Login and a Leveling Up System on my server?

Would I need to use mIRC? If so, can someone post up a quick explanation of how to do it?

I'm familiar with Pawno, but I've been reading the forums and i don't believe it can be done with it.

Thanks,

Kush.

SO He Thinks that Login and register Can't be Done with pawno anyways GUPS has Register / Login System
Title: Re: Login and Level System
Post by: LBR.george on April 27, 2011, 04:20:34 PM
the command
if ($2 == register) {
    if ($vcmp.pass(%id) != $null) vcmp.msg %id Error - This Nick-Name is Already Registered
    elseif (!$3) vcmp.msg %id Error - Missing Information, /c $2 <password>
    else {
      vcmp.say Player %name Registered & Logged In (Admin Level: 1)
      vcmp.msg %id You Registered - Nick-Name: %name $+ , Admin Level: 1 $+ , Password: $3 $+ , Login With Command: /c login <password>
      !writeini -n vcmp.accounts.ini IPS %name $vcmp.ip(%name)
      !writeini -n vcmp.accounts.ini LEVELS %name 1
      !writeini -n vcmp.accounts.ini PASSWORDS %name $3
      !writeini -n vcmp.accounts.ini LIN %name 1
    }
  }



this is to check the ini



alias vcmp.check.ini {
  !remini -n vcmp.admin.ini LIN
}
alias vcmp.check.timer {
  if ($timer(check $+ $1) == $null) .timercheck $+ $1 0 2 vcmp.check $1
  if ($timer(check) == $null) .timercheck -m 0 500 vcmp.players
}
alias vcmp.check {
  var %id = $vcmp.getid($1)
  if (%id != Unknown) {
    vcmp.startcash %id
    vcmp.dointerest %id
    vcmp.setmoney %id $vcmp.cash(%id)
  }
 
  }





in vcmp.load (this is where you load the ini etc)
set this

vcmp.accounts.ini


this is the command to login



elseif ($2 == login) {
    if ($vcmp.pass(%id) == $null) vcmp.msg %id Error - This Nick-Name is not Registered
    elseif ($vcmp.lin(%id) == 1) vcmp.msg %id Error - You are already logged in
    elseif (!$3) vcmp.msg %id Error - Missing Information, /c $2 <password>
    elseif ($3 != $vcmp.pass(%id)) vcmp.msg %id Error - Incorrect Password, Please Try Again
    else {
      vcmp.say $iif($vcmp.level(%id) == 0,Member,$iif($vcmp.level(%id) == 1,Registered Player,Administrator)) %name Logged In (Admin Level: $vcmp.level(%id) $+ )
      vcmp.msg %id You Logged In - Nick-Name: %name $+ , Admin Level: $vcmp.level(%id) $+ , Status: $iif($vcmp.level(%id) == 0,Member,$iif($vcmp.level(%id) == 1,Registered Player,Administrator))
      vcmp.timer.login %name off
      !writeini -n vcmp.accounts.ini LIN %name 1
      !writeini -n vcmp.accounts.ini IPS %name $vcmp.ip(%name)
    }
  }



I have helped