Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Mattz

Pages: 1 ... 5 6 [7] 8 9 ... 11
92
Support / Re: Pickup Problem
« on: August 07, 2008, 10:11:33 pm »
WTH is that :s. It looks like a meat cleaver.

93
mIRC/pawn Scripting / Re: Auto-Kick driver-by -help-
« on: August 07, 2008, 02:31:50 am »
no problem  ;)

94
mIRC/pawn Scripting / Re: Auto-Kick driver-by -help-
« on: August 07, 2008, 02:16:52 am »
Here try this
Code: [Select]
on *:SIGNAL:vcmp.event.kill:{
  if ($vcmp.deathreason($4) == Driver-By) {
  vcmp.adminchat ** Auto - Kick Player: $+ $chr(91) $vcmp.hgetname($1) $chr(93) Reason: $+ $chr(91) Driver - By $chr(93)
  vcmp.kick2 $1
  vcmp.adminchat Admin-Auto-Kick Player:[ $vcmp.hgetname($1) ] Reason:[ Driver-By ]
  }

95
mIRC/pawn Scripting / Re: Help in script
« on: August 06, 2008, 12:40:22 am »
Here use mine  ;)

Code: [Select]
on *:SIGNAL:vcmp.event.chat:{
var %name = $left([ $1 ],-1),%id = $vcmp.nameid(%name), %team = $iif($vcmp.hgetteam(%id) != -1,$v1,255), %cname = $iif($vcmp.hgetteam(%id),$vcmp.nickcolor(%name $+ $par(%team)) $+ :,01 $+ $1 $+ )
  $iif($($+(%,antispam.,[ %name ]),2) == 5,vcmp.kicknow %id flooding,inc -u5 $+(%,antispam.,[ %name ]))
  vcmp.enforcelogin %id
  vcmp.enforcestfu %id
  vcmp.enforce.censor %id $2-
  if ($left($2,1) == !) {
    if ($($+(%,anticmdspam.,[ %name ]),2) > 0) { vcmp.adminmsg %id ** Error: You must use the commands between 4secs. }
    else { inc -u4 $+(%,anticmdspam.,[ %name ]) | .signal vcmp.event.gamecmd $1- } 
  }
  if (%echolevel > 2) vcmp.echo 2 $+ $+($chr(91),%id,$chr(93)) $+ 7 %name $+  $+ : $2-
}
                                         ^
                                         |
Replace your old one and add this.

---------------------------------------

Quote
alias vcmp.nickcolor {
  var %name = $1
  if ($par(255) isin %name) !return 14 $+ $remove(%name,$par(255)) $+ 
  elseif ($par(0) isin %name) !return 14 $+ $remove(%name,$par(0)) $+ 
  elseif ($par(1) isin %name) !return 07 $+ $remove(%name,$par(1)) $+ 
  elseif ($par(2) isin %name) !return 06 $+ $remove(%name,$par(2)) $+ 
  elseif ($par(3) isin %name) !return 10 $+ $remove(%name,$par(3)) $+ 
  elseif ($par(4) isin %name) !return 08,14 $+ $remove(%name,$par(4)) $+ 
  elseif ($par(5) isin %name) !return 04 $+ $remove(%name,$par(5)) $+ 
  elseif ($par(6) isin %name) !return 12 $+ $remove(%name,$par(6)) $+ 
  elseif ($par(7) isin %name) !return 13 $+ $remove(%name,$par(7)) $+ 
  elseif ($par(Cool isin %name) !return 07,15 $+ $remove(%name,$par(Cool) $+ 
  elseif ($par(9) isin %name) !return 13,15 $+ $remove(%name,$par(9)) $+ 
  elseif ($par(10) isin %name) !return 05,15 $+ $remove(%name,$par(10)) $+ 
  elseif ($par(11) isin %name) !return 08,15 $+ $remove(%name,$par(11)) $+ 
  elseif ($par(12) isin %name) !return 10,15 $+ $remove(%name,$par(12)) $+ 
  else !return 01 $+ %name $+ 

This has nothing to do with [3] Cristian_08:


96
Support / Re: connecting.............
« on: August 04, 2008, 07:04:56 am »
Connect to your server using IP: 127.0.0.1:5192

To make other people join, you have to forward your port.


97
XE Servers (Legacy) / Re: Suggestions
« on: August 03, 2008, 04:36:01 am »
Yea renting sounds good. It would be like;

!rentcar <amount-of-days> Maxium 10days = $200  (10 Multiplied by 2)

So each day is x2

When each day that goes by say for
Eg. Three days = $60 That would  be subtracted from the renters bank account and would be added to the vehicles owner account.

You can also use "Database for Vice City Vehicles" by Windlord to round off the costof all vehicles.
 :D

98
XE Servers (Legacy) / Re: Suggestions
« on: August 02, 2008, 09:34:17 pm »
How about making !buycar and !sellcar script?  ;)

99
Support / Re: Unhandled exception????
« on: July 30, 2008, 12:58:20 am »
Unhandled Exception are vc-mp bugs, you cannot do nothing about them.

100
mIRC/pawn Scripting / Re: Change Commands !cmd to /c cmd
« on: July 26, 2008, 07:15:57 am »
Just delete

 
Code: [Select]
elseif ($2 == !ban) {
      if ($hget(vcmp,loggedin. $+ %id) < 3) { vcmp.adminmsg %id You Must Be Admin Level 2 Or Higher To Attempt This Command. }
      else {
        if ($vcmp.nameid($3) == $null) vcmp.adminmsg %id Error: Invalid ID.
        else {
          if ($hget(vcmp,loggedin. $+ %id) < $hget(vcmp,loggedin. $+ $vcmp.nameid($3))) { vcmp.adminmsg %id You can't ban someone higher level admin than you... }
          else { vcmp.ban2 $3 $4- | vcmp.adminchat ** Admin $vcmp.hgetname(%id) Banned player:[ $vcmp.hgetname($vcmp.nameid($3)) ] Reason:[ $4- ]
          }
        }
      }
    }

Because you already have /c ban in on *:SIGNAL:vcmp.event.command:{

101
mIRC/pawn Scripting / Re: killed
« on: July 26, 2008, 06:30:06 am »
np  ;D

102
mIRC/pawn Scripting / Re: killed
« on: July 26, 2008, 06:14:33 am »
Here

Code: [Select]
vcmp.echo 4*** $vcmp.nickcolor($1) 4killed $vcmp.nickcolor($3) $+ 4 $par($vcmp.deathreason($4))
To fix VCMP.ID.ADDALIAS

- Go and the script file and press crlt+f
- Type VCMP.ID.ADDALIAS  in the box provided
- When you find it, delete it


103
mIRC/pawn Scripting / Re: Buycar Scriptin Sasan
« on: July 25, 2008, 04:51:08 am »
Uhmm wth is this.
* Mattz locks the topic.

104
Use !lock <fullname> <reason>

Or delete the account ini files

105
Support / Re: Mss32.dll help
« on: July 24, 2008, 07:16:04 pm »
Someone had the same problem as you.

Here's a link to a mss32.dll

http://www.2shared.com/file/3439977/65cd6a1d/Mss32.html

It should work  ;)

Pages: 1 ... 5 6 [7] 8 9 ... 11