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 2 3 [4] 5 6 7
46  Scripting / Script Help / Re: script problem on: February 24, 2013, 02:56:12 am
When you first download the server, it will come with some pre-written scripts. I think "Ramps" is the one you're looking for
47  Liberty Unleashed / Support / Re: Username on: February 08, 2013, 03:31:07 am
The max length of a username is 64 (considering the color codes), so if you have a medium-length username
Code: [Select]
IdkanYavuk
...and you want color for each letter:
Code: [Select]
[#ffffff]I[#000000]d[#662546]k[#c0c0c0]a[#f0f0f0]n[#ffffff]Y[#222222]a[#142c47]v[#656565]u[#ffffff]k
...you will have some troubles, because lu only reads
Code: [Select]
[#ffffff]I[#000000]d[#662546]k[#c0c0c0]a[#f0f0f0]n[#ffffff]Y[#22
Hope this helps
48  Scripting / Script Help / Re: Remove car burnt on: February 04, 2013, 07:23:15 am
Code: [Select]
if ( szCmd == "vehicule" )
{
if ( szParams )
{
local pTemp = split( szParams, " " ), ID = 90;
if ( IsNum( pTemp[ 0 ] ) ) ID = pTemp[ 0 ].tointeger();

if ( ( ID >= 90 ) && ( ID <= 150 ) )
{
local v = pPlayer.Pos;
MessagePlayer( "Vous avez spawner la vehicule ID " + ID + "...", pPlayer );
local vh = CreateVehicle( ID, Vector( v.x + 5, v.y, v.z ), pPlayer.Angle );
vh.OneTime=true;
}
}
}
49  Scripting / Script Help / Re: how it to make ? on: January 26, 2013, 02:47:10 am
I've forwarded this question my Engrish speaking monkeys and they think you mean to say:
"How can I make it so that when spawn a vehicle, you can't spawn another one within a minute".

If that's what you mean, please tell so. If not, please try to say it in another way that will make a bit more sense. Oh, And I will slap my monkeys ofcourse.

Yes, that's what he meant. My native language is spanish and I'm used to this kind of sentence structure
50  Off Topic / General Chat / Re: I need a Program on: January 19, 2013, 06:25:31 am
You could also use MySQL, and use the same server and username/password.
This would probably be the best method.

Thank you! but I need more shared data, not only passwords, do I use it anyway?
If you move all your shared information into a MySQL database, you could reference it that way, yes.

Well MySQL is an unexplored area for me... anyone who can guide me?
51  Off Topic / General Chat / Re: I need a Program on: January 19, 2013, 12:35:56 am
You could also use MySQL, and use the same server and username/password.
This would probably be the best method.

Thank you! but I need more shared data, not only passwords, do I use it anyway?
52  Scripting / Script Help / Re: Help :'( on: January 18, 2013, 08:36:17 pm
i know it's so easy xD .  :o

function onScriptLoad( )
{
  SetHUDItemEnabled( HUD_WANTED, false );
}

 :o :o


You cant use that in onScriptLoad... try on onClientSpawn
No, it's work with onScriptLoad ;)
Thank's for this script HUD HIDDEN <3

Didn't know that, thanks for the advice!
53  Scripting / Script Help / Re: Help :'( on: January 18, 2013, 08:12:20 pm
i know it's so easy xD .  :o

function onScriptLoad( )
{
  SetHUDItemEnabled( HUD_WANTED, false );
}

 :o :o


You cant use that in onScriptLoad... try on onClientSpawn
54  Scripting / Script Help / Re: visible cursor on: January 17, 2013, 07:04:36 am
Hello!
Easy! Just use ShowMouseCursor.

Good luck!
55  Off Topic / General Chat / I need a Program on: January 16, 2013, 03:19:59 am
I need a program that copies the saved data (hashes, player passwords, etc) between two different servers, so the data can be accessed by both of them. So if anyone knows how to download it, or how to make one, it will be appreciated

Thank you in advance
56  Liberty Unleashed / Support / Re: Unable to contact master list and laggy on: January 15, 2013, 07:58:42 pm
I think I found a problem, I do not know if this is really it, because after deleting the files, I haven't a error master list!

Try :
On searching windows, tape : %appdata%
Entry on folder "Unleashed Games" and delete 4 files.

Now, open LU and press click Official or Internet! Work or not ?  ???

Doesn't work
57  Servers / General Server Chat / New server. What Gamemode? on: January 15, 2013, 04:58:26 pm
The thing is, I have some gamemodes in mind, but I want to give you what you guys want.
Vote!
58  Scripting / Script Help / Re: Help :'( on: January 11, 2013, 06:09:07 pm
Hey Help  ;D
 
 how to make Radar blips for all vehicles i need for 9 Vehicles only . but how ?

just configure a vehicle variable, and add the blip, just like this:
Code: [Select]
function onScriptLoad()
{
local vehicle1 = CreateVehicle( VEH_INFERNUS, Vector( 226, 7263, 723 ), 90, -1, -1 ), vehicle2 = CreateVehicle( VEH_INFERNUS, Vector( 226, 7263, 723 ), 90, -1, -1 ), vehicle3 = CreateVehicle( VEH_INFERNUS, Vector( 226, 7263, 723 ), 90, -1, -1 ); //And so on
CreateBlip( BLIP_8BALL, vehicle1.Pos );
CreateBlip( BLIP_8BALL, vehicle2.Pos );
CreateBlip( BLIP_8BALL, vehicle3.Pos ); //And so on
}
59  Scripting / Script Releases / Re: [BetterLU] Spawn Protection Script V2.1 on: January 10, 2013, 04:00:36 am
Looks nice, one suggestion: The one from VRocker has a feature so it disables the protection once you start shooting. If you add that in, its perfect :)

Added! Grab the V2.1 now
60  Scripting / Script Help / Re: where I made a mistake ? on: January 03, 2013, 07:10:04 pm
Explain the buggy part, I didn't understand you
Pages: 1 2 3 [4] 5 6 7
© Liberty Unleashed Team.