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

Pages: 1 2 [3] 4 5
31
Support / Re: Server :P
« on: January 14, 2009, 05:20:01 pm »
Just purchase some hosting? its not that expensive...

heres a few common hosts for you to choose from:

Extreme Serverz
ServerFFS

32
mIRC/pawn Scripting / Re: [HELP]Mirc is making laag ?
« on: January 12, 2009, 04:15:03 am »
Script lag depends on many things.
What script are you using first of all? Some scripts may not be scripted as well so take longer to execute.

Another reason is if you run VC on the same computer as the scripts, on some low end machines, vc will take priority and lag the scripts out.

Also you have to take into consideration the network lag between scripts and the server. if the scripts are hosted on the other side of the worl to the server then it will respond slower.

To be honest there are many differant reasons why scripts would lag. These are probably the most common though

33
mIRC/pawn Scripting / Re: Teleport command
« on: December 27, 2008, 02:13:37 pm »
Look at this bit:

Code: [Select]
elseif (%id == (!dmarena) || (
First off your checking if the player id is (!dmarena, if should be $2 == !dmarena

Secondly why have you put || ( at then end? || = or and the bracket should be a curly brace like { not a bracket.

Fixed line would be:

Code: [Select]
elseif ($2 == !dmarena) {
Also make sure !dmarena is in your cmdlist for the cmdcheck

Oh and one more thing...

Code: [Select]
vcmp.msg %id vcmp.msg %id Taking you to the Death Match arena...
notice what your doing here? it wont stop it working but i think its best to be pointed out. you've done vcmp.msg %id twice, you only need it once

This should work aslong as theres nothing broken above these lines. Remember to check mircs status window for any major errors

34
mIRC/pawn Scripting / Re: I need Some Help :S
« on: December 09, 2008, 05:01:07 pm »
Correct me if i'm wrong but isn't vcmp.setvehiclehealth broken? as far as i'm aware it will either burn or give your car infinity health

May be wrong but i thought i'd point this out

35
mIRC/pawn Scripting / Re: Please help
« on: December 09, 2008, 04:59:35 pm »
Your !write syntax is correct and does work in testing so i assume theres 1 or 2 possibilities...

First of all, does vcmp.cmdcheck return pass or fail? if it returns fail then this would be why its not working

Second thing would be what operating system are you using and what version of mirc?
Under vista with mirc 6.3, doing !write blah.something 1 2 will write a file call blah.something to C:\Users\<Username>\AppData\Roaming\mIRC. Have you checked there for the file?
If you want it to be in the script directory, use !write $qt($scriptdirblah.something) 1 2

Hope this helps

36
Support / Re: I got an error message
« on: November 18, 2008, 11:53:01 pm »
This is something to do with a bad txd file. remember not to have any mods installed when you play vcmp.

A full reinstall of vc and vcmp should fix this

37
Support / Re: Bugs that should be fixed in 0.4
« on: November 12, 2008, 05:38:43 pm »
1. The 'raindrops' arn't usually due to rain, its because somebody has fell in the water and since the game is only configured for one player, the water shows on your camera.

2. I assume your on about the auto aim feature in the game. Can you not see why this doesn't work? i'm guessing it was purposely disabled to stop people with controllers having an aiming advantage/disadvantage.

3. Sorry, i do not know about LC-MP since i can never get it working either

4. This would occur if your trying to connect to a laggy server, or if your laggy yourself. I'm guessing this would occur if your on a bad wireless and have a lot of packet loss

5. This sometimes happens with the keyboard too. should be easy for the devs to fix this :)

38
mIRC/pawn Scripting / Re: Bank working weird in WSV 0.3
« on: October 17, 2008, 03:50:36 pm »
Did you add the if ( $4 > 0 ) check to deposit too? Sounds like you havn't

39
mIRC/pawn Scripting / Re: Bank working weird in WSV 0.3
« on: October 17, 2008, 02:19:52 pm »
you just need to add a check to see if $4 is more than 0 before processing the rest of the command.

Example: (Taken from the code posted earlier)

Code: [Select]
elseif (withdraw* iswm $3) {
  WSV.cmdlevelcheck $1-
  if (El-Banco-Corrupto-Grande isin $WSV.loco($2)) {
    if (( $4 > 0 ) && ($4 <= $WSV.bank($2))) || ($4 == all) {
      var %money = 0
      if ($4 == all) %money = $hget(WSV.Bank,$WSV.getname($2))
      else %money = $4
      hinc WSV.money $WSV.name($2) %money
      hdec WSV.bank $WSV.name($2) %money
      WSV.setcash $2 $hget(WSV.money,$WSV.getname($2))
      WSV.msg $2 You have been withdrawed $chr(91) $ $+ %money $chr(93) from your bank account!
      WSV.msg $2 New Balance: $chr(91) $ $+ $WSV.bank($2) $chr(93)
    }
    else WSV.msg $2 You havn't got $chr(91) $ $+ $4 $chr(93) in you're bank account!
  }
  else WSV.msg $2 You have to be at the bank!
}

That should work fine

40
mIRC/pawn Scripting / Re: Question about VRocker's DLL
« on: October 12, 2008, 10:06:18 am »
The time bug is due to the time prediction the dll uses. Seeing as vc-mp doesn't send any time data unless asked for it and doesn't tell the rcon client whether its locked, its predicted and asked for every 10 seconds.
I could add a call to stop the prediction inside the dll if needed.

Also, it should be possible to do what you want to do with markers. somebody else will have to help you out with that though since i've not really looked into them.

41
Support / Re: Error message when starting up??
« on: October 06, 2008, 09:20:08 pm »
Looks like you have mods installed. That error is referring to a TXD problem so its not VC:MP.

Do a fresh reinstall of GTA:VC and try again. Dont install any mods :)

42
This problem occurs due to the way the dll gets vehicle information. Due to the way the vcmp rcon protocol is, no information about vehicles gets sent until somebody enters a vehicle.
A way around this is to use the same method as the WSV, which reads a copy of the config.ini, parses it and aadds the information into the internal pools.

This should fix the problems with vehicle IDs. since doing //echo -a $vcmp.vehiclenamemodel( 190 ) returns skimmer.

43
mIRC/pawn Scripting / Re: mIRC Tutorial No.1 by Windlord
« on: September 28, 2008, 11:59:51 pm »
it would actually be:

on *:TEXT:*idiot*:#:{
kick $chan $nick
writeini "curse.ini" $nick say idiot
}

Read the mIRC help file for what identifiers work :)

44
mIRC/pawn Scripting / Re: mIRC Tutorial No.1 by Windlord
« on: September 25, 2008, 05:05:27 pm »
:o wow very nice tut windy :) its sure to help out a lot of people.

Well done explaining these :)

45
mIRC/pawn Scripting / Re: timer.refresh
« on: September 13, 2008, 03:03:47 pm »
tried calling it timerrefresh? cant remember if dots after the timer mess things up

Another reason ofcourse is that your forgetting to start the timer :)

Pages: 1 2 [3] 4 5