• Welcome to Vice City Multiplayer.
 
Menu

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.

Show posts Menu

Messages - [AoD]NC

#556
U know: some commands are in only for admins. Search in the MRC file commands, that are only for admin [like kicking players]. At the start of the command will be a script like this from FBS.

Mmm, i downloaded WSV, huh....
This is the parameter:
if ($WSV.levels($4) > 1)

So it should be:
  elseif ($3 == getall) {
    if ($WSV.levels($4) > 1) vcmp.msg $1 $2 You need to be Admin level 2 or higher. 
    else {
      vcmp.say $1 ** Warping:[ All players $chr(93) to:[ $vcmp.name($1, $2) $chr(93)
      var %a = 0
      while (%a <= %limit) {
        if ($vcmp.name($1, %a) != $vcmp.name($1, $2)) {
          vcmp.setlocation $1 %a $calc($vcmp.location($1, $2).x + 2) $vcmp.location($1, $2).y $calc($vcmp.location($1, $2).z - 1.12)   
          vcmp.msg $1 %a District:[ $+ $vcmp.area($1, $2) $+ $chr(93)
        }
        !inc %a
      }
    }
  }

I dont know WSV very well. Maybe instead of f.e. vcmp.say u have wsv.say? U need them to rescript it ;).
#557
Getall on FBS looks so:
  elseif ($3 == getall) {
    if ($FBS.lin($1, $2) == $null) vcmp.msg $1 $2 You must either register or be logged in as Admin Level 2.
    elseif ($FBS.Level($1, $2) < 2) vcmp.msg $1 $2 Error, You need to be at least level 2 to use this command. 
    else {
      vcmp.say $1 ** Warping:[ All players $chr(93) to:[ $vcmp.name($1, $2) $chr(93)
      var %a = 0
      while (%a <= %limit) {
        if ($vcmp.name($1, %a) != $vcmp.name($1, $2)) {
          vcmp.setlocation $1 %a $calc($vcmp.location($1, $2).x + 2) $vcmp.location($1, $2).y $calc($vcmp.location($1, $2).z - 1.12)   
          vcmp.msg $1 %a District:[ $+ $vcmp.area($1, $2) $+ $chr(93)
        }
        !inc %a
      }
    }
  }


I thought WSV is based on VRockers DLL, FBS is based on this too, so it should work noproblemo.

U need only to change this:
    if ($FBS.lin($1, $2) == $null) vcmp.msg $1 $2 You must either register or be logged in as Admin Level 2.
    elseif ($FBS.Level($1, $2) < 2) vcmp.msg $1 $2 Error, You need to be at least level 2 to use this command. 

Change it to a WSV admin rule [only for admins with level 2 or higher]. I think there are in WSV also commands that are only for admins.
#558
Man! This wooooooorks :D!
Thanks thanks thanks a lot :D!

FBS is the best script that I've ever used. Before i tried GUS, but FBS rlz B).
#559
I modified the sample script from rulk, it took an hour to do this. Well it works good.

on *:SIGNAL:vcmp.player.move:{
  if ($vcmp.vehicle($1, $2) > 0) {
    if ($vcmp.speed($1, $2) > 10) {
    vcmp.announce $1 $2                    ~o~ $round($calc($vcmp.speed($1, $2) * 3.1), 0) ~x~ kmh $chr(10)  $chr(10)
    }
  }
  else {
  }
  !.signal vcmp.playermove $1-
}


Where  is a special letter, that ur web-browser doesn't display ;p.

The original convert from MPS [?] to KMH => MPS * 3,6 = speed in KMH. I don't used 3,6, only 3,1. I even don't think, that a PCJ can have more than 200 KMH speed :D so i changed it.

I know, this script made by me is not 100% correctly ;) but
* it's only displaying if the player is sitting in a car [vehicle]
* and it's displaying only, if the player is driving faster than 30 km/h. I made this so, cause while a player enter a car, i made a announce, which displays the car health.

For all those, who hasn't a move signal: u can simply add them :). I'm using and modifying FBS, i haven't a MOVE signal there, but i created it and it works :).

Ah and my good question :D : i gotta a 1MBps internet connection. I don't think it's a slow connection, but the speedometer for 1 person is a long combination of commands... Will it lag  :P ?
#560
mIRC/pawn Scripting / Re: Makers...
March 04, 2009, 09:00:26 PM
Ok big thxx to you  :)

Good idea with this marker & pickup thing  :D

So, if the vcmp.removemarker doesn't delete markers, for what is this command good?
#561
General Discussion / Re: gta-host.com
March 04, 2009, 04:16:09 PM
vice, can u say no lag. Maybe u give us the ip of ur server  :P ? For test that really no lag, of course  ;)
#562
General Discussion / Re: How to make videos?
March 04, 2009, 04:13:20 PM
Fraps is good. I used Fraps for making my VCMP beta gameplay's [3 vids for now]. It records in the highest resolution of VC, but u must close ALL programs [messenger, web browser] otherwise Fraps will lag ur game and the Fraps record will be pure shi* ;).
#563
mIRC/pawn Scripting / Makers...
March 04, 2009, 04:03:28 PM
Hi  ;)
Ok, here I gotta 3 questions about VCMP markers.

1. Deleting a marker
Let's say I've created a marker
vcmp.setmarker $1 9 361.73 -513.53 1.32
[it's bellow the terrain so ppl can't see it, but it's only for the icon on the hud ;) ]

And how to delete it now? I've tried with
vcmp.removemarker $1

And

vcmp.removemarker $1 9

And this...

vcmp.removemarker $1 9 361.73 -513.53 1.32

I dont know how to delete this marker now  ::) . No one of this works.

2. Action with markers
I want to do smthnig like, if u enter the marker, it will do an action f.e. display a text. How to do this?

3. Markers=crash, lag?
The markers are shown only if u are logged or u login. Let's say 20 ppl join the server. And if everyone log-in, the script will make 20 markers? And is it possible, that so many markers could crash players or the server?

Thx for help  :D
[my 1st post here  8) ]