• Welcome to Vice City Multiplayer.
 

Login and Level System

Started by Kush, April 26, 2011, 09:44:19 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Kush

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.
[R2] *USA* VCMP Server [EuphoricHosting]
173.34.193.77:5192

BIG[H]

My Guru FORUM MUST VISITmegavcmp.freeforums.org

BIG[H] = BIG HaLL

stormeus


BIG[H]

#3
   
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
My Guru FORUM MUST VISITmegavcmp.freeforums.org

BIG[H] = BIG HaLL

LBR.george

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