• 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 - Chezor

#16
mIRC/pawn Scripting / Re: How can I...
October 16, 2008, 07:09:49 PM
General Use Scripts [Based]...

on *:SIGNAL:vcmp.pickup:{
var %name = $vcmp.name($1)
var %name2 = $replace($replace($vcmp.name($1),[,~),],~)
var %id = $1

elseif ($2 == <pikup_id>) {
vcmp.msg %id You pickup a teletransport pickup! I will transport you to [place]
vcmp.setlocation %a $vcmp.axis.getloc(<place-name-here>) 
}
#17
mIRC/pawn Scripting / Re: WSV !CAR PROBLEM
October 15, 2008, 08:17:08 AM
Quote from: [SRS]Tomi on October 14, 2008, 10:49:25 PM
Or check if he is higher than lvl1 (i think all SAF members are admins on that server) + if playermodel Tommy, than sethp to 0.
I prefer this method.

Everyone have their own style you know...
#18
Quote from: Cristian on October 14, 2008, 09:06:22 PM
xD 2 cmd

Punjabi only asked those -_- i said im making more but he declined the offer...

Quote
Harpreet Singh: what?
Omi The Great: u said rimal is going to script in forum
Harpreet Singh: no
Harpreet Singh: he is just config editor
Harpreet Singh: not scripter
Harpreet Singh: hey
Harpreet Singh: when u will complete the script
Harpreet Singh: sorry
Harpreet Singh: two commands
Omi The Great: well 2 cmds only for whole serv ? -.-
Harpreet Singh: no
Harpreet Singh: other i will make it myself
Omi The Great: !restartround
Harpreet Singh: i just want that two
#19
mIRC/pawn Scripting / Re: WSV !CAR PROBLEM
October 14, 2008, 06:52:11 PM
Quote from: gamyster on October 14, 2008, 06:40:00 PM
Thanx SRS.hey please help i have a skin which is tommy and i want it that only =SAF= members can spawn with that skin if any other NON SAF player joins if he choose skins his HP should get 0 and say that This Skin is Only FOR =SAF=Clan Members

i have made it using GUS for my server  ;)
#20
off topic: rofl @ tommis.. retards hahh  :D
#21
Script Showroom / Counter-Strike Script [2-cmd/only]
October 14, 2008, 09:43:17 AM
As requested by 'punjabi_goli' i made 2 commands for him. !plantbomb and !defusebomb. He said that he will get the skin commands done himself and restart round commands etc...so heres the script with 2 cmds. note: not tested. based on general use scripts by tommis. I have made this type of script first time so maybe minor bugs in it.



;_____________________________________
;
;---(GUS)---Counter-Strike-(v1)-------
;------------by-(Chezor)--------------
;_____________________________________


;------PlaceBomb------

elseif ($2 == !placebomb) {
  if ($vcmp.skin(%name) != terrorist) vcmp.msg %id Error - Only terrorists can use this command
  elseif (bombsite !isin $vcmp.area(%id)) vcmp.msg %id Error - You are not at any bombsite
  elseif ($vcmp.bomb(%name) != 1) vcmp.msg %id Error - You do not have the C4..
  else {
    vcmp.say %name has planted the bomb at $vcmp.area(%id)
    !writeini -n vcmp.bomb.ini PLANTED check yes
    .timer 1 1 /vcmp.bombplantannounce %id %name
    .timer 1 120 /vcmp.blastit %id %name
  }
}

;------DefuseBomb-----

elseif ($2 == !defusebomb) {
  if ($vcmp.skin(%name) != counter-terrorist) vcmp.msg %id Error - Only CT can use this command
  elseif ($readini(vcmp.bomb.ini,PLANTED,check) != yes) vcmp.msg %id Error - Bomb isnt planted!
  elseif (bombsite !isin $vcmp.area(%id)) vcmp.msg %id Error - you are not at bombsite!
  elseif ($readini(vcmp.bomb.ini,DEFUSING,defusing) == yes) vcmp.msg %id Bomb is already being defused!
  else {
    .timer 1 1 !writeini -n vcmp.bomb.ini DEFUSING defusing yes
    .timer 1 1 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 10 $+ %
    .timer 1 3 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 20 $+ %
    .timer 1 6 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 30 $+ %
    .timer 1 9 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 40 $+ %
    .timer 1 12 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 50 $+ %
    .timer 1 15 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 60 $+ %
    .timer 1 18 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 70 $+ %
    .timer 1 21 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 80 $+ %
    .timer 1 24 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 90 $+ %
    .timer 1 27 $iif(bombsite isin $vcmp.area(%id)) !writeini -n vcmp.bomb.ini DEFUSE defused yes
    .timer 1 27 $iif(bombsite isin $vcmp.area(%id)) vcmp.msg %id Defusing 100 $+ %
    .timer 1 27 $iif(bombsite isin $vcmp.area(%id)) vcmp.say Bomb has been defused!!
  }
}

;------Aliases-------

alias vcmp.bombplantannounce {
  var %a = 0
  while (%a <= 20) {
    if ($readini(vcmp.bomb.ini,PLANTED,check) == yes) vcmp.announce %a BOMB HAS BEEN PLANTED
    !inc %a
  }
}

alias vcmp.blastit {
  var %a = 0
  while (%a <= 20) {
    if ($readini(vcmp.bomb.ini,DEFUSE,defused) != yes) {
      if (bombsite isin $vcmp.area(%a)) {
        vcmp.sethp %a 0
        vcmp.announce %a TERRORIST WIN
      }
    }
    !inc %a
  }
}


Intructions:
1] Rename the desired bombsite area in vcmp.data.ini to bombsite
2] put the code in general use script, in proper places..

Regards,
Chezor
#22
Support / Re: Problem with finding Servers
October 14, 2008, 07:06:19 AM
Quote from: Commodore64 on October 04, 2008, 10:10:52 AM
Hello,  ;D
I have a problem with GTA-VC Multiplayer,  i found only one server,  no more servers, when i try  enter servers Manually, they dont work, what should i do, to fix this?


That happens when your internet connection has limited connectivity. It happend to me recently yesterday. I was able to see only 2 servers! but now its fixed. Its all related to your 'Internet Connection'. So you wont find any solution on Vice City Multiplayer Forum as its not related to vcmp problems!
#23
Support / Re: Help!!!
October 14, 2008, 07:04:32 AM
OMG LOOK a ALIEN LANGUAGE lol  ;D

Anyways i understand your weird english-
Solution
1] goto www.google.com
2] Search " Download GTA VC no cd crack 1.0 "
3] See if u find good results there
4] download the file from a list of websites displayed in there...
5] replace ur old 'gtavc.exe' with new downloaded one
#24
Support / Re: Error!!! i need help!!!
October 14, 2008, 06:58:25 AM
you dont have GTA Vice City Game ?
Install GTA VC. if u have already installed. just locate the directory and start vcmp done..
#25
yes ur right rulk
#26
Player position: where the skin shud be placed go there and use /s
Camera Postion: from where the camera will look at skin, all entering people will look skin model from certain location go there and look at ur model skin spawn place and use /s
Camera look: where the camera will look ? of course at ur skin model so its ur same skin player position co ordinate
#27
Quote from: gamyster on October 10, 2008, 09:11:00 AM
HOW U GOT LW SPAWN CAM FROM? i heard someone sended u.

dude anyone can make it by getting co-ords....
Quote from: [SRS]Tomi on October 10, 2008, 02:35:32 PM
LOL  :P
yeah lol  ::) ;D
#28
Quote from: Cristian on October 09, 2008, 12:38:56 AM
ahhh, are of clan Gx, i are of clan Gx


no im just giving example.. in your script it should be

%owner Cristian
#29
when you open mIRC and WSV script is loaded. Open script editor and goto variables tab. In that search for '%owner'

%owner [Gx]Chezor
%bankname Bank
%bankloc Bank
%cardealer Sunshine Autos
%cardealerloc Sunshine Autos

Those a variables assigned to numbers n9 n10 n11 i think..
#30
Quote from: Cristian on October 07, 2008, 12:01:11 AM
help me in this?

[variables]
n0=%WSV.HDD C:\WSV\
n1=%serverip
n2=%rconport
n3=%rconpass
n4=%servername
n5=%echochan
n6=%maxplayers
n7=%scriptinfo WSV v0.2 - by Windlord, VRocker and damo. wsv
n8=%serverrules
n9=%owner
n10=%bankname
n11=%bankloc
n12=%cardealer
n13=%cardealerloc 
n14=%serverinit 3760

help please


but what actually you need help with. what you want to know about that... ?