• 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

Topics - Javi

#1
General Discussion / Beta Team
February 14, 2010, 04:58:36 PM
I guess most of you have noticed that the Beta Team is not like it used to be, there were a lot of more Beta Testers (active ones). I bet 50% of them are inactive and can't beta test, and 20% of them are not even in the VC:MP channels. Wouldn't it be a good idea of doing a Beta Team renewal?
#2
General Discussion / R2 player animations?
February 08, 2010, 04:05:22 PM
So I was just wondering why R2 is using the same player animations as 0.1. By any chance is the next release using 0.3z animations back?
#3
General Discussion / Squirrel
February 07, 2010, 09:40:20 PM
So I keep wondering why developers care about adding Pawn to their new releases, or even improving mIRC when we all know it's a little laggy if you don't make a good use of it. Haven't you heard of Squirrel? It's pretty much faster, easier, and shorter; I could convert a 1000 lines Pawn script in Squirrel with... hmmm 400 lines? Squirrel has much more functions than mIRC and Pawn, and can work along with ini, hash, SQLite and XML. In fact, GTA IV:MP is using Squirrel. And we already have a Squirrel Wiki with all the necessary info, including some nice scripting examples. There's already an unofficial Squirrel VC:MP server.
#4
Tutorials / Setting up a server ( New VCMP Server )
December 23, 2009, 07:34:09 PM
Hey,
Here's a guide I've written about a server setup. It shows you the basics to create a simple server, including script, custom skins, vehicles, pickups,...
         

Hope you enjoy it.


http://www.mediafire.com/?mmb3vz3m2xz


Note: Requires Adobe Reader
* Updated *

Kind regards,
Forze
#5
Long time this server is down... Is it coming back again?  :D
#6
Support / Server not running?
November 13, 2009, 10:01:09 PM
Heya all!

I'm just telling you guys if you can solve this in any way.

1- I'm running the server, and it's in the master list. Low ping?


2- You join the server from the master list, and it shows this:


Doesn't work, it just keeps like this. If I join from favourites (IP 127.0.0.1), it works.

Any help will be welcome, thanks in advise.
#7
mIRC/pawn Scripting / LastManStanding [FBS, WIP]
October 12, 2009, 03:27:50 PM
Hya all,
I've been working on some LastManStanding (Simple) for FBS, this isn't working right now, for me.
What it does:

  • Takes you to the LMS Position
  • Freezes you
  • Sets your HP to 100
  • Sets your Armour to 100
  • Counts down
  • Unfreezes
  • Begins

Here's the script, it would be fine if some of you guys could fix it  :P
}
  elseif ($3 == lms) {
    if (%lms == on) vcmp.say $1 ** LastManStanding already in progress!
    else {
      set %lms on
      timer 1 1 vcmp.say $1 ** LastManStanding has started! Type !join within 20 seconds.
      timer 1 20 set %lms off
    }
  }
  elseif ($3 == join) {
    if (%lms == on) vcmp.say $1 ** $vcmp.name($1, $2) has joined LastManStanding!
    else {
    vcmp.setlocation $1 $2 -754.187866 -1602.638916 23.734970
    vcmp.setarmour $1 $vcmp.name($1, $2) 100
    vcmp.sethealth $1 $vcmp.name($1, $2) 100
    vcmp.msg $1 $2 Taking you to LastManStanding. Enjoy!
      timer 1 1 vcmp.setcontrols $1 $vcmp.name($1, $2) 0
      timer 1 2 vcmp.say $1 LastManStanding starting in:
      timer 1 5 vcmp.say $1 ---- 1 ----
      timer 1 6 vcmp.say $1 ---- 2 ----
      timer 1 7 vcmp.say $1 ---- 3 ----
      timer 1 8 vcmp.say $1 ---- GO! ----
      timer 1 8 vcmp.setcontrols $1 $vcmp.name($1, $2) 1
  }
else {
      if (%lms == off) {
    vcmp.say $1 ** LastManStanding is not active!
      }   
    }
#8
mIRC/pawn Scripting / Asking for some scripts
September 26, 2009, 11:50:39 AM
Hey all,
I'd like to ask for some things, all of them for FBS.

  • How to fix the props?
  • Gotoloc?
  • Car colors?

I'd prefer to fix the 2 first ones, I'll thank it with a smiley like this  :D
Bye  :)