Author Topic: Login and Level System  (Read 3801 times)

0 Members and 1 Guest are viewing this topic.

Offline Kush

  • Street Thug
  • *
  • Posts: 1
    • View Profile
Login and Level System
« on: April 26, 2011, 11: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.
[R2] *USA* VCMP Server [EuphoricHosting]
173.34.193.77:5192

Offline BIG[H]

  • Made Man
  • ***
  • Posts: 159
  • Sight of light
    • View Profile
Re: Login and Level System
« Reply #1 on: April 27, 2011, 05:46:38 am »
Outdoor city server Administrator, FS server owner!

Offline stormeus

  • VC:MP Developer
  • VC:MP Veteran
  • *
  • Posts: 1122
    • View Profile
Re: Login and Level System
« Reply #2 on: April 27, 2011, 02:06:19 pm »
Do not PM me for support.




Offline BIG[H]

  • Made Man
  • ***
  • Posts: 159
  • Sight of light
    • View Profile
Re: Login and Level System
« Reply #3 on: April 27, 2011, 04:29:07 pm »
   
Quote
Login 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
« Last Edit: April 27, 2011, 06:26:07 pm by BIG[H] »
Outdoor city server Administrator, FS server owner!

Offline George

  • Street Thug
  • *
  • Posts: 32
    • View Profile
Re: Login and Level System
« Reply #4 on: April 27, 2011, 05:20:34 pm »
the command
Code: [Select]
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

Code: [Select]

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
Code: [Select]
vcmp.accounts.ini

this is the command to login

Code: [Select]

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
(LBR)George, XE Head Scripter, Xs Developer, LBR's founder, playing VCMP since 2009