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
Pages: [1]
1  Liberty Unleashed / Liberty Unleashed Chat / Re: Mates back to Dodo [VIDEO] on: July 26, 2010, 01:22:12 am
I wish I could fly like that  :(
2  News and Content / Liberty Unleashed News / Re: Public Beta! on: July 23, 2010, 12:38:50 am
There is an specific place to post the crashes:
http://mantis.liberty-unleashed.co.uk/
3  News and Content / Liberty Unleashed News / Re: Public Beta! on: July 22, 2010, 05:31:39 pm

How about that one?  :o
* Javi runs for posting a high res pic
4  News and Content / Liberty Unleashed News / Re: Public Beta! on: July 21, 2010, 11:33:05 pm
 :D!
5  News and Content / Liberty Unleashed News / Re: Latest News! on: July 21, 2010, 03:12:09 pm
Nice  :o Is it possible to view others changing their car colours? Since I've only seen the one recording doing it  :(
6  News and Content / Liberty Unleashed News / Re: Latest News! on: July 16, 2010, 07:47:45 pm
Nice  :o
7  Off Topic / General Chat / Re: Need a bigger driveway? on: March 17, 2010, 08:13:12 pm
I have a few of these in my garage  8) 8) 8)
8  Off Topic / General Chat / Re: New VC:MP Server (With Squirrel!) on: March 17, 2010, 07:44:16 pm
MexicanoS, just to let you know: I've scripted that command for you, I swear I haven't stolen it from anywhere. Also I noticed that the angle thing was kinda useless and had to take a closer look into it and I couldn't be arsed to include it, this was just a template so you could see the bugs in your past command. By the way, you are welcome :)

KTHXBAI
9  Off Topic / General Chat / Re: New VC:MP Server (With Squirrel!) on: March 17, 2010, 03:19:11 pm
mark, as far as I know the Hunter's and Sparrow's cannons don't fit as drive-by.

MexikanoS, I have noticed a couple of bugs in your script, and I felt free to code one for you.

Code: [Select]
function onPlayerCommand( player, cmd, text )
{
if ( cmd == "s" )
{
WriteIniNumber( "Gotolocs.ini", text, "x", player.Pos.x );
WriteIniNumber( "Gotolocs.ini", text, "y", player.Pos.y );
WriteIniNumber( "Gotolocs.ini", text, "z", player.Pos.z );

PrivMessage( "Saved location: " + text, player );
}

else if ( cmd == "l" )
{
local x = ReadIniNumber( "Gotolocs.ini", text, "x" ),
 y = ReadIniNumber( "Gotolocs.ini", text, "y" ),
 z = ReadIniNumber( "Gotolocs.ini", text, "z" );

if ( x ) {
local pos = Vector( x, y, z );
player.Pos = pos;

PrivMessage( "Teleporting you to location: " + text, player );
}

else PrivMessage( "Location '" + text + "' does not exist.", player );
}
}

PS: I haven't tested the script, but it should work.
Pages: [1]
© Liberty Unleashed Team.