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

Pages: 1 [2]
16
mIRC/pawn Scripting / Re: !stfu on IRC
« on: July 01, 2008, 01:24:59 am »
Assuming you're using sansan this is what it should look like:

Code: [Select]
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!

17
mIRC/pawn Scripting / Re: Speedlimit
« on: June 29, 2008, 05:35:09 pm »
dont think you need %name should be:

Code: [Select]
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!

18
mIRC/pawn Scripting / Re: Bad language
« on: June 27, 2008, 06:12:09 pm »
UNTESTED!

Find:

Code: [Select]
on *:SIGNAL:vcmp.text:{
Directly below add:

Code: [Select]
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:

Code: [Select]
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

19
Support / Re: Strange Problem
« on: June 22, 2008, 08: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.

20
Support / Re: VCMP Problem
« on: November 03, 2007, 12:06:14 am »
Quote
Server browser should be the only stable thing. :o

There is that bug on vista plus a few bugs (not sure if they were fixed when lc-mp came out) like the -z param (server password) not being writen to the gta-lc.ini and small things like it doesn't delete the MP params from the gta-lc.ini so some n00bs that dunno how to edit files and stuff can't play single player.

Quote
You could try running it as administrator. Under Vista many different programs often crash because they don't have the administrator privileges or something. Try right-click and "Run as administrator".

Already tried it and it doesn't help.

21
Support / Re: VCMP Problem
« on: November 02, 2007, 06:19:24 pm »
i think he's on about the server browser max it happens to most people (maybe all people not sure :P) using Vista you get spammed with errors when ya close it.
* AdTec_224 thinks server browser has alot of bugs that need fixing

-AdTec_224

22
Support / Re: Problems with Linux Server
« on: September 30, 2007, 02:25:56 am »
0.1D Linux Server readme (few things changed :P)

> Change the permissions on vcmp.bin and announce.bin to execute
> Configure the ini (remember to change admin(rcon) password)
> Run './vcmp.bin config.ini' to start the VC-MP server.
> Please don't run as root.

23
mIRC/pawn Scripting / Re: [REQUESTS] Weather ID and pickup ID's [REQUESTS]
« on: September 04, 2007, 12:14:11 am »
Weather IDs from the original VC:MP INI file:

Quote from: VCMP 0.3z Config.ini
; ---weather settings----------------
; 0 = mostly clear skies
; 1 = overcast
; 2 = rainy-lightning
; 3 = foggy
; 4 = clear skies
; 5 = rainy
; 6 = dark sky partly cloudy
; 7 = light sky partly cloudy
; 8 = overcast partly cloudy
; 9 = grey sky black clouds

-AdTec_224

24
mIRC/pawn Scripting / Re: BASIC mIRC Tutorial
« on: August 15, 2007, 06:32:33 pm »
there are only 2 official dlls the 0.1 dll and the 0.3 dll the only dll that works with 0.3z is the 0.3 dll so the code must still be wrong unless this tutorial is for 0.1 and thats well kinda pointless :P.

25
mIRC/pawn Scripting / Re: BASIC mIRC Tutorial
« on: August 13, 2007, 09:33:15 pm »
even if you were just making your own IRC script it would still be wrong.

$2 has no use whatsoever in the vcmp.msg alias

if you used:

Quote
elseif ($2 == !hello) || ($2 == !pmhello) {
if ($vcmp.cmdcheck(!hello,%id) == fail) !halt
else vcmp.msg $2 %id Hello World!
}

output to the rcon would be:

Quote from: Rcon
AdminMsg !hello 1 Hello World!

whereas if i used:

Quote
elseif ($2 == !hello) || ($2 == !pmhello) {
if ($vcmp.cmdcheck(!hello,%id) == fail) !halt
else vcmp.msg %id Hello World!
}

output becomes:

Quote from: Rcon
AdminMsg 1 Hello World!

which is correct.

Quote from: matthiasvegh, August 13, 2007, 10:52:00 AM
sorry, but this is a tutorial for irc scripting, not editing tommis's gus.
you are right, i should have mentioned aliases
and at the time of creation, the tut was correct.
and you can still use it with the old rcon dll. so theres nothing
Quote from: AdTec_224 on Today at 09:45:49 AM
so all references to the alias vcmp.msg are wrong in your tutorial.
wrong with the tutorial, just incomplete.

Not sure what your saying there but the fact remains the code is wrong.

-AdTec_224

EDIT

Just noticed a bug in your vcmp.msg alias

Quote
alias vcmp.msg dll rcondll.dll RconCommand AdminChat $1-

should be

Quote
alias vcmp.msg dll rcondll.dll RconCommand AdminMsg $1-

26
mIRC/pawn Scripting / Re: BASIC mIRC Tutorial
« on: August 13, 2007, 07:45:49 pm »
Quote from: Tommis,GUS 9.0
  elseif ($2 == !hp) || ($2 == !pmhp) {
    if ($vcmp.cmdcheck(!hp,%id) == fail) !halt
    elseif (%a == -1) vcmp.msg %id Error - Absent ID/Name
    else vcmp.cmdsay $2 %id $vcmp.name(%a) $+ 's - Health: $vcmp.hp(%a) $+ % $+ , Armour: $vcmp.armour(%a) $+ %
  }

so all references to the alias vcmp.msg are wrong in your tutorial.

Code: [Select]
vcmp.msg $2 %id Hello World!
should be:

Code: [Select]
vcmp.msg %id Hello World!
Or

Code: [Select]
vcmp.cmdsay $2 %id Hello World! (not 100% sure what cmdsay is as  i dont use GUS)

Before posting a tutoral please remember to check it over first

-AdTec_224

27
mIRC/pawn Scripting / Re: 0.3z rcon Commands
« on: July 23, 2007, 04:08:44 pm »
ok i wont bother using it ;) thanks again for the info

-AdTec_224

28
Support / Re: never connects vc:mp v0.3
« on: July 23, 2007, 04:07:35 pm »
you dont have the latest VC:MP (0.3.z) get it from http://www.vicecitymultiplayer.com

29
mIRC/pawn Scripting / Re: 0.3z rcon Commands
« on: July 22, 2007, 08:18:14 pm »
WOW just what i needed thank you falcon! ;D

just a quick question :P

Quote
set 16 <marker> <pos.x> <pos.y> <pos.z> (set icon and posation)
set 18 <carid> (kils car engine)

is there a set 17? and if so what is it?

Thanks again

-AdTec_224

30
Vice City / Re: How can i get version 1.0?
« on: July 19, 2007, 10:10:31 pm »
When you first install Vice City it is V1.0 but if you patched the game after installing it becomes V1.1 so the question is have you patched the game? if you have its V1.1 if you haven't its V1.0.

Quote
Someone give me a upgrader or downgrader cuz i dont know what i got!

There is no downgrader and there never will be as far as i know.

-AdTec_224

Pages: 1 [2]