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

#16
General Discussion / Re: HELP!Skins problem!HELP
September 06, 2008, 02:03:44 PM
might be because your using "0" for the coords try using "0.0" like in my example.

So try this:

Class = 0 1 0.0 0.0 0.0 0.0 1 1 24 100 27 100 ; policeman
Class = 0 2 0.0 0.0 0.0 0.0 1 1 24 100 27 100 ; SWAT


- AdTec_224
#17
General Discussion / Re: HELP!Skins problem!HELP
September 05, 2008, 10:53:42 PM
I feel i should point out those documents were not made by me i only host them they were made by VercettiG.

Rasher: Since im not really sure what you mean but remember special skins cant be used with ped skins basicly most (if not all i dont remember) skins under id 100 work aslong as they are with other skins less than 100 and skins over 100 work only if you put them with other skins higher than 100.

e.g.

Will work:

Class = 0 1 0.0 0.0 0.0 0.0 17 500 23 500 21 500
Class = 0 98 0.0 0.0 0.0 0.0 17 500 23 500 21 500


or:

Class = 0 114 0.0 0.0 0.0 0.0 17 500 23 500 21 500
Class = 0 115 0.0 0.0 0.0 0.0 17 500 23 500 21 500


Wont work:

Class = 0 1 0.0 0.0 0.0 0.0 17 500 23 500 21 500
Class = 0 115 0.0 0.0 0.0 0.0 17 500 23 500 21 500


-AdTec_224
#18
Support / Re: Basic Server Issiue.
September 05, 2008, 08:44:56 PM
When you download the server there should be a folder called "vcmp" in that folder there should be a file called "config.ini" but it would appear that you have deleted or renamed that folder or file.

Redownload the server zip file, extract it then open up "vcmp\config.ini" and edit the values: "ServerName =" and "AdminPassword ="

e.g.

ServerName = "[0.3z]b4t's Test Server"

&

AdminPassword = "servtest"

Then start your server.

Hope this helps.

-AdTec_224
#19
there is a definition in the default config.ini (the one that comes with the server)

; Vehicle =
; #model_id #spawn_x #spawn_y #spawn_z #z_angle #color1 #color2 (use -1 for auto-color from carcols.dat)


so:

Vehicle = 191 338.6310 -237.6571 29.1708 98.9897 0 0

191 = Model ID
338.6310 = Coord X
-237.6571 = Coord Y
29.1708 = Coord Z
98.9897 = Angle
0 = Colour 1
0 = Colour 2

Hope this helps

- AdTec_224
#20
mIRC/pawn Scripting / Re: Server config.ini
August 29, 2008, 08:55:30 PM
??? correct me if im wrong but as far as i know the linux server and the windows server are the same its probably just that you have too many different models of vehicles.

- AdTec_224
#21
LC:MP / Re: LC:MP 0.3z Released!
July 15, 2008, 02:28:04 PM
Link 1 fixed ;) sorry about that :-X

- AdTec_224
#22
mIRC/pawn Scripting / Re: Lock Car for sansan
July 12, 2008, 02:55:50 PM
dont think there is but its not hard to create one :P here is a list of rcon commands http://forum.vicecitymultiplayer.com/index.php?topic=135.0 by Falcon.

-AdTec_224
#23
mIRC/pawn Scripting / Re: Code Bakasam
July 12, 2008, 12:53:14 AM
i have almost no idea what your talking about but im guessing your talking about aliases and mirc functions so my advice is look at the mirc help file and every alias in vcmp script can be used as a "$" (e.g. $vcmp.hgetname, $vcmp.hgetip) learn to understand the code dont just keep requesting code and letting someone else do all the work for you (thats directed at everyone and not just him) i didnt keep double posting on forums requesting code i spent time looking and understanding the code dont get me wrong im more than happy to help you im just asking you try yourself first.

P.S. sorry if there are any typos i was writing this is a rush :-X

-AdTec_224
#24
mIRC/pawn Scripting / Re: !stfu on IRC
July 01, 2008, 12:56:55 AM
humm strange it works for me i just tested it :P

QuoteMon 11:55::. <@AdTec_224> !stfu adtec
Mon 11:55::. <@Captain_Obvious> ** Added [KFJ]AdTec_224 to the stfu list.
Mon 11:55::. <@Captain_Obvious> Admin:[ AdTec_224 ] Added:[ [KFJ]AdTec_224 ] To:[ STFU List ]

Quote from: TanaX01 on July 01, 2008, 12:51:10 AMNice Adtec and !BanList In Irc ?

my version of !banlist just echo's a web URL and bans are echo'd and logged by a bot i have no idea how to script it from local to remote.
#25
mIRC/pawn Scripting / Re: !stfu on IRC
July 01, 2008, 12:24:59 AM
Assuming you're using sansan this is what it should look like:

elseif ($1 == !stfu) { vcmp.addstfu $2- | vcmp.adminchat Admin:[ $nick ] Added:[ $iif($vcmp.nameid($2) != $null,$vcmp.hgetname($vcmp.nameid($2)),$2) ] To:[ STFU List ]  }

Note: UNTESTED!
#26
mIRC/pawn Scripting / Re: Speedlimit
June 29, 2008, 04:35:09 PM
dont think you need %name should be:

alias vcmp.speed {
  var %x = $vcmp.location($1,x),%y = $vcmp.location($1,y),%z = $vcmp.location($1,z),%a = $calc(%x - $2),%b = $calc(%y - $3),%c = $calc(%z - $4),%d = $round($sqrt($calc(%a * %a + %b * %b + %c * %c)),2)
  vcmp.say $vcmp.name($1) - Speed: $round($calc(%d / 0.27777778),2) Kilometers Per Hour
  if ($round($calc(%d / 0.27777778),2) > 200) {
    vcmp.warn $1 Server To high speed
  }
}


Note: UNTESTED!
#27
mIRC/pawn Scripting / Re: Bad language
June 27, 2008, 05:12:09 PM
UNTESTED!

Find:

on *:SIGNAL:vcmp.text:{

Directly below add:

if ($findtok(fuck shit bastard,$2-,1,32)) vcmp.warn $vcmp.getid(%name) Autowarn Using bad language

Or create a new blank script file and add:

on *:SIGNAL:vcmp.text:{
  var %name = $left($1,-1)
  if ($findtok(fuck shit bastard,$2-,1,32)) vcmp.warn $vcmp.getid(%name) Autowarn Using bad language
}


Hope that helps

-AdTec_224
#28
Support / Re: Strange Problem
June 22, 2008, 07:03:28 PM
is vc-mp.flt in your Vice City\mss directory? if not thats probably why its running singleplayer if it is there then i dont know what to suggest apart from checking you dont have any hooks installed like a d3d8.dll in your main directory.

Mattz: if he is able to play VC singleplayer through his vcmp browser it means he has located it properly but its not running the vcmp params.
#29
Script Showroom / Re: New VC-MP mIRC Admin
March 31, 2008, 07:50:51 PM
As i said before Vrocker nice work 8) however i have found a bug :-X /c command:

--> AdTec_224 joined the game.
AdTec_224: /c moo test <--- correct
--> [KFJ]Anya joined the game.
AdTec_224: /c moo tesht <--- Anya typed that command but its returning my name ???

btw would it be possible to make it so it echos the IP in the .part signal? because $vcmp.getip doesnt work on that signal im guessing because the dll delete's the data when it sees a player leaving the server.


Fixed bug :D

- AdTec_224
#30
LC:MP / Re: LC:MP 0.3z Released!
November 12, 2007, 01:52:52 PM
Im using a Nvidia 512MB GeForce 7300SE (note: crap card dont buy it :P) it doesn't work on vista but the same installion works on XP (i just copied the directorys via FTP) so for me its a vista only problem for those of you on XP try updating your GFX driver (there is probably a new driver out but i have it working on XP using version 162.18).

Edit: Forgot to say if you still can't get it working on XP make sure you delete vc-mp.flt (NOT lc-mp.flt) from your mss folder in your LC directory

-AdTec_224