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

#31
Support / Re: I can't find my server at "Internet" tab
August 02, 2007, 03:17:36 PM
seems to me, your server is working, you just can see it.
tip 1.: know your ip and then add it to favorites. check if the server browser finds it. if it says "retrieving info" then it cant see it. check ports etc.

you say scripts are working right? well, if they were working, on the server, you would see a rcon admin connected line. which i dont see on the pic.
#32
Support / Re: Vcmp 0.3z frame limiter problem
August 01, 2007, 10:35:39 PM
il give it a 5% probability of yur pc goin crazy BUT, you can undo the restore  ;D
#33
General Discussion / Re: Lay off the locks.
August 01, 2007, 03:39:23 PM
trouble is, if theres a tutorial bout how to do something, and it has been worked for ever now, and any nublet shouldbe able to understand, doesnt read pinned topics etc, and asks, "where is the on/off button  ???" then, you get this. and theres nothing you can do, and i dont think there is anything you COULD do about it.
i mean, i doubt you would want to reply to this  topic for example, Is it possible to play vcmp on a ripped version?.

but, if you have some suggestions, i dont think a public topic is the place to do this. seeing as telling them that the sun rises east, basically makes them look stupid, and will do anything to stop this.
this topic is prolly gonna get locked/deleted.

cya
#34
Support / Re: Vcmp 0.3z frame limiter problem
July 30, 2007, 06:04:43 PM
as far as i can tell, ur using xp right?
if so, try a system restore.
to do so, do this:
Quote
1. start system restore.
>> Start\programs\accesories\system tools(not sure of the name here)\system restore.
Follow steps on pictures(made by me ;D )

choose " restore system to an earlier date."

choose a date, where the game worke


click next. your system will be rebooted. itl take longer than normal.

Hope i helped
#35
hey  dude, this isnt World of Warcraft.
Quote from: Hawkeye on July 29, 2007, 08:24:59 PM
Have you ever seen the kind of damage a real shotgun can do?
yup, shooting like 10 bullets at a time, it makes the victim, something like spongebob.
an autokick could be done quite easy, or if not, you could simply build a ping filter in the server browser, but make it so that you cant see servers to where your ping is above 300 or sommin. but in worse situation, build it into rcon/rcondll so like, on join check ping if ping > 200 kick player.

i also want to see something near to dynamic spawning, and rcon to be able to check the skins players use.
#36
Support / Re: 0x004BB533 VC:MP server crash...
July 28, 2007, 12:50:48 PM
have you changed the config.ini?
coz i think youve got too much vehicles in there
#37
Support / Re: help
July 26, 2007, 07:53:55 PM
what error?
#38
Support / Re: help
July 26, 2007, 07:27:17 PM
Define:
Quote from: Baron888 on July 26, 2007, 02:37:50 PM
nothing happens.
plz.
starts in single player
or, doesnt open vice
what do u mean ???
#39
Support / Re: Vcmp 0.3z frame limiter problem
July 26, 2007, 07:23:43 PM
this seems very like a video card problem to me.  :-\
i c your problem having to reboot.
TIP: press ctrl+alt+del / ctrl+shift+esc b4 vcmp. switch to the processes tab (2nd from the left) and check if there is a process started with the letter "G" hopefully there isnt
go in vcmp, if u get an error, press ctrlaltdel, press g, press del, press enter. basically, u just selected the gta-vc process, killed it (del), confirmed (ent)

but this still doesnt solve your problem.
reinstall gta vc and vcmp.
check it
any changes? if not, give us your hardware spec, and your resoloution.
my guess is, your video card isnt installed properly (therefore you are in software mode {640*480*16}) and cant fix it. so get a driver NOW.
#41
mIRC/pawn Scripting / BASIC mIRC Tutorial
July 26, 2007, 07:04:06 PM
ok, many ppl hav problems with this area of vcmp. so, i thought i might put a little tutorial together. Suggestions welcome!
ok, lets go.

Firstly, download the G.U.S made by tommis. (preferably the OLD)

next open it. this can be done with notepad, mIRC's in built script editor, or any similar program. (Note: i advise notepad ++ for this site: http://notepad-plus.sourceforge.net)

lets start with a basic script every tutorial starts with.
You want the server to say "Hello World!"
but you want it to be a bit more complex, you want the server to say this, when a player says !hello
we now need to decide, wether we want "Hello world" to be public, or just the player who said this can see it.

place this code into your script some where near line 1194 (it doesnt really matter, but near the !info command is a good place to put it)
elseif ($2 == !hello) || ($2 == !pmhello) {
vcmp.msg $2 %id Hello World!
}


ok. that was our first code. now, the part vcmp.msg is the actual "what to do" thing in the script. $2 %id specifies who to send the message to. Hello world, is the parameter on the actual action. therefore, irc has to send a message, defined in parameters.
if we want the "Hello world!" to be public, replace vcmp.msg with vcmp.say

If we want to check weather player has the right to see "hello world", place an IF before the vcmp.msg:
elseif ($2 == !hello) || ($2 == !pmhello) {
if ($vcmp.cmdcheck(!hello,%id) == fail) !halt
else vcmp.msg $2 %id Hello World!
}

now, the if line, does the following
checks if the value after !hello in vcmp.cmdlevel.ini is larger than the players admin level. if it is larger it goes to !halt. if smaller, it ignores !halt and does the next line, which is hello world
!halt, is a storno, but im not sure, if it gives an error message or not.

basically a command looks like this

elseif ($2 = !yourcommandhere) || ($2 = !pmyourcommandhere) {
    if ($vcmp.cmdcheck(!heal,%id) == fail) !halt   ;<<< admin check weather player has enough rights
    elseif ($vcmp.setting.heal != on) vcmp.msg %id Error - $2 is Currently Set Off ;<<< specify conditions for command (ie.:IF sky is green THEN Error. ELSE what to do if sky is not green)
    elseif ($vcmp.cost(%b) > $vcmp.cash(%b)) vcmp.msg %id Error - You need atleast $ $+ $bytes($vcmp.cost(%b),b) to use this command
    else {  ;<<< What happens when all conditions are met.
      vcmp.cmdsay $2 %id >> Healed - Name: %name $+ , Cost: $ $+ $bytes($vcmp.cost(%b),b)
      vcmp.cash- %b $vcmp.cost(%b)
      vcmp.sethp $vcmp.getid(%name) 100


btw, due to the error (not sure if its an error)
i would like to clear the alias's

alias vcmp.hp !return $iif($hget(VCMPhp,$vcmp.name($1)) != $null,$hget(VCMPhp,$vcmp.name($1)),Unknown)
alias vcmp.armour !return $iif($hget(VCMPArmour,$vcmp.name($1)) != $null,$hget(VCMPArmour,$vcmp.name($1)),Unknown)


alias vcmp.gethp !return $iif($hget(VCMPhp,$1) == $null,0,$v1)
alias vcmp.getarmour !return $iif($hget(VCMPArmour,$1) == $null,0,$v1)
alias vcmp.money dll rcondll.dll RconCommand GetMoney $1-
alias vcmp.say dll rcondll.dll RconCommand AdminChat $1-
alias vcmp.msg dll rcondll.dll RconCommand AdminChat $1-
alias vcmp.ban dll rcondll.dll RconCommand Ban $1-
alias vcmp.kick dll rcondll.dll RconCommand Kick $1-
alias vcmp.coords dll rcondll.dll RconCommand GetLoc $1
alias vcmp.armour1 dll rcondll.dll RconCommand GetArmour $1
alias vcmp.health dll rcondll.dll RconCommand GetHp $1
alias vcmp.sethp dll rcondll.dll RconCommand set 10 $1-
alias vcmp.setweapon dll rcondll.dll RconCommand set 5 $1-
alias vcmp.setvehicle dll rcondll.dll RconCommand set 9 $1-
alias vcmp.setlocation dll rcondll.dll RconCommand set 1 $1-
alias vcmp.setarmour dll rcondll.dll RconCommand set 12 $1-
alias vcmp.players {
  !hadd -m VCMPPlayers Blanking Plate
  !hadd -m VCMPIPs Blanking Plate
  !hfree VCMPPlayers
  !hfree VCMPIPs
  !return $dll(rcondll.dll,RconCommand,players)
}
alias vcmp.connect dll rcondll.dll RconConnect $1-
alias vcmp.disconnect dll rcondll.dll RconDisconnect
alias vcmp.status !return $dll(rcondll.dll,RconIsConnected,)
alias vcmp.name !return $iif($hget(VCMPPlayers,$1),$v1,Unknown)
alias vcmp.ip !return $iif($hget(VCMPIPs,$remove($1,$chr(36))) == $null,Unknown,$v1)

this is not the complete header tho.
i would just like to show to adtec, that this was based on gus 5.
i have removed link to gus 9.

Keep back for more...
#42
great  ;D the link works.
um.. hav u tested this??  :-\
i dont like it. all i could do, was talk to the server. when i connect as player, theres no welcome to server or anything.. :'(
is it me?
#43
mIRC/pawn Scripting / Re: Pickups ids HERE
July 26, 2007, 06:14:36 PM
not a bad idea..
if u hav time....
and hav no life (i take that bak if someone gives me such a list  ;))
#44
mIRC/pawn Scripting / Re: Any RPG mods?
July 26, 2007, 06:10:17 PM
um.. yer, the laziness. well, with that attitude fish (
Quote from: Elited Fish on July 26, 2007, 10:57:03 AM
i cant do anything i dont have scripting skills and i wont learn
), i doubt ull get n e where.
like i said. what are the commands u require.
u cant request "a car" u have to specifiy what u want, how u want. but i say, just open the vcmp.mrc in notepad http://sourceforge.net/projects/notepad-plus/ and just read throo it.

good luck  ;)
#45
mIRC/pawn Scripting / Re: Counter Strike Scripts
July 26, 2007, 11:22:16 AM
thx
its not really a dificuilt script, u just have to start doing it really. im gonna have problems with a round engine.
i was hoping a game mode like this. (not sure the process figure is 100% accurate)

sorry for the extensive linking
um.. anyone got any idea, how i could get the skin info?