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
16  Liberty Unleashed / Liberty Unleashed Chat / Re: Current LU projects on: September 16, 2016, 11:14:09 am
I'd love to pick up the work again on LU Argonath. Programming a server with LU is really fun and I can recommend it to anyone who is a fan of GTA3. Unfortunately I don't have alot of time at my hands right now. I have created a basic server and it's easy to expand it.
17  Scripting / Scripting Discussion / Re: Encrypting text/passwords on: September 03, 2016, 11:59:46 am
Salt + sha256 is the common standard nowadays, I believe.

https://crackstation.net/hashing-security.htm
18  Scripting / Script Help / Re: Fires, and extinguishing them on: August 28, 2016, 08:49:08 pm
I read that part yeah Vortrex, it's exactly how I did it. I put all the fires in an array. Every 30 or 60 seconds I delete/extinguish them all and do createfire on all those locations again.
19  Liberty Unleashed / Bug Reports / Re: Time on: August 28, 2016, 10:47:27 am
Is january is 0?
20  Liberty Unleashed / Support / LU on Ubuntu 14.04 64 bits on: August 23, 2016, 10:45:55 pm
I want to use LU on a 14.04 LTS 64 bits, I installed the 32 bits library and LU works. But when I want to use mysql, it won't work because the module lacks the following library:

/usr/lib/x86_64-linux-gnu/libmysqlclient.so.18

Is there something I can do to make it work on 14.04 64 bit?
21  Scripting / Script Help / Re: Fires, and extinguishing them on: August 23, 2016, 12:37:18 am
Thank you for confirming
22  Scripting / Script Help / Re: Fires, and extinguishing them on: August 22, 2016, 10:26:09 pm
Fire's are not seeable if the fire has been created before a player has joined the game?
23  Scripting / Script Help / Fires, and extinguishing them on: August 22, 2016, 03:43:58 pm
Is there a way to check if a fire has been extinguished by water?
24  Liberty Unleashed / Support / Re: Bruh serious problem on: August 21, 2016, 04:38:14 pm
I can't read it and or zoom in to read it "distorted imagine text".

There's another method of screenshots, make the error happen again and press "print screen" key. After pressing it go to Microsoft word and and click paste. This will create a image. Make sure to zoom in " see if you can read the error. Of you can so can we :).
The error says, when you click on it, it zooms in, "The program can't start because api-ms-win-crt-runtime-l1-1-0.dll is missing from your computer. Try reinstalling the program to fix this problem."
25  Liberty Unleashed / Support / Re: Crashing CreatePickup function on: July 26, 2016, 08:15:50 pm
The server didn't crash for me when I tried that. Are you sure it happens on that line?
26  Liberty Unleashed / Liberty Unleashed Chat / Re: Lu wiki is gone? on: March 06, 2016, 04:37:44 pm
I need the wiki, I hope its back soon.
27  Scripting / Script Help / Re: sphere & pickup .ID on: February 04, 2016, 02:40:35 pm
I have made a rather dumb error and had defined a class Sphere myself, which caused the error.
28  Scripting / Script Help / sphere & pickup .ID on: February 04, 2016, 11:10:16 am
Hello

Somehow I can't get the ID of pickup and spheres. I can get the ID of a vehicle and object.

This is the code I have with it:

Code: [Select]
        local sphere = CreateSphere(Vector(0,0,0), 5.0, Colour(153, 0, 0));
local pickup =  CreatePickup(1362, Vector(0, 0, 0) );
local vehicle = CreateVehicle( VEH_INFERNUS, Vector(0, 0, 0), 5.0, -1, -1 );
local object = CreateObject( 1378, Vector(0, 0, 0) );

        // doesn't work
print(sphere.ID);
        print(pickup.ID);
        // works
        print(vehicle.ID);
        print(object.ID);

Is there something I'm doing wrong? The other types like .Owner or .Pos doesn't work either on spheres and pickups. The wiki however says it should be possible.

Code: [Select]
AN ERROR HAS OCCURED [the index 'ID' does not exist]

<04/02/2016 - 11:06:59>
CALLSTACK

<04/02/2016 - 11:06:59> *FUNCTION [onScriptLoad()] Scripts/Main/main.nut line [64]

<04/02/2016 - 11:06:59>
LOCALS

<04/02/2016 - 11:06:59> [object] INSTANCE

<04/02/2016 - 11:06:59> [vehicle] INSTANCE

<04/02/2016 - 11:06:59> [pickup] INSTANCE

<04/02/2016 - 11:06:59> [sphere] INSTANCE

<04/02/2016 - 11:06:59> [this] TABLE
29  Scripting / Script Help / player.ColouredName on: February 03, 2016, 08:54:18 pm
Hello guys,

I can't seem to set the colour of a players name. This is what I have tried:

Code: [Select]
player.ColouredName = "[#E5FFCC]hi[#d]";
Code: [Select]
player.ColouredName = "[#E5FFCC]hi";
The wiki says to use:

"You can use the colour formatting tags with this function ([#RRGGBB] [#d])"

But there is no clear example of how to use it. Does someone know how to use this?
30  Scripting / Script Help / Re: Player NameTag Colour on: December 06, 2015, 01:08:48 pm
Is there anyway to change the colour of a player's name by script?
Pages: 1 [2] 3
© Liberty Unleashed Team.