Recent Posts

Pages: 1 ... 7 8 [9] 10
81
Liberty Unleashed Chat / Re: Hello everyone!
« Last post by AlecuMadalin32 on November 04, 2018, 08:49:49 pm »
Hello
82
Liberty Unleashed Chat / Hello everyone!
« Last post by TheEpicLemon on November 03, 2018, 04:07:38 pm »
Hello!  :)
83
Support / server.exe has stopped Working [HELP]
« Last post by shane_Iron on October 25, 2018, 10:15:06 am »
It's been almost 2 years since i've played this game. yesterday i decided to download LU,
i wanted to host my server but when i tried to open the server.exe, it crashed
!!!
Any solution?


regards~

Shane.
84
Script Help / Re: How Do I Make An MOTD Message on Server?
« Last post by aspalagus on October 23, 2018, 11:19:26 am »
I think the answer is very relevant.
85
Scripting Discussion / Re: Module question
« Last post by aspalagus on October 23, 2018, 11:18:44 am »
This review is the best.
86
Support / Re: LU.exe Not a valid Win32 application.
« Last post by Motley on September 24, 2018, 05:59:14 am »
Windows Xp support was removed.

But if you can oddly get it to work I would have to suggest following these steps if anything.
https://www.techwalla.com/articles/how-to-find-corrupt-fonts


I know I got Zorin to run Liberty Unleashed. And Zorin is a linux operating systems that's practically a complete setup so wine is already there "It's free".
87
Support / LU.exe Not a valid Win32 application.
« Last post by AlbatRaozTR on September 22, 2018, 09:02:43 pm »
Hello there. I am a Windows XP Professional SP2 user. When you open LU.exe; "Not a valid Win32 application." I get an error. Can you please help?
[/color]
88
Advertise your server! / Re: New polish private server
« Last post by Piterus on September 21, 2018, 02:56:32 pm »
Private server with public password

nice

however good luck
89
Advertise your server! / New polish private server
« Last post by cyber-sub-zero on September 16, 2018, 02:48:58 pm »
Hi I'd like to ask for adding my private serwer. He will have it max 3 players and it will only be used to play with my pesh friend. Please add this server.
if you add it, please send it in the private message.
server will name "PLprivate" and passworld: kotopsochomik
Command which i'm wants to add: "/skin 0-122","/vehicle 90-150" and thats it

Sorry of my bad english i'm poland
90
Script Snippets / Re: Inpoly [Command]
« Last post by Motley on September 09, 2018, 08:05:33 pm »
Version two:

Code: [Select]
function onPlayerCommand( player, cmd, text )
{
    if (cmd == "cp" ) {
      if (text) {
        Create_Poly(player, text)
      }
    }
   
}
local x1_ = 0, y1_ = 0, x2_ = 0, y2_ = 0, x3_ = 0, y3_ = 0, x4_ = 0, y4_ = 0;

function Create_Poly(player, size) {

    x1_ = player.Pos.x, y1_ =  player.Pos.y, x2_ = player.Pos.x, y2_ = player.Pos.y, x3_ =  player.Pos.x, y3_ = player.Pos.y, x4_ =  player.Pos.x, y4_ =  player.Pos.y;
    size = size.tointeger()
    //North East
    x1_ += size;
    y1_ += size;

    // Display the positions on the radar
    CreateClientBlip(player, BLIP_NONE, Vector(x1_, y1_, -1));
   
    //South East
    x2_ += size;
    y2_ -= size;

    // Display the positions on the radar
    CreateClientBlip(player, BLIP_NONE, Vector(x2_, y2_, -1));

    // South West
    x3_ -= size;
    y3_ -= size;

    // Display the positions on the radar
    CreateClientBlip(player, BLIP_NONE, Vector(x3_, y3_, -1));

    // North West
    x4_ -= size;
    y4_ += size;

    // Display the positions on the radar
    CreateClientBlip(player, BLIP_NONE, Vector(x4_, y4_, -1));

    // Output the poly so it can be copied and pasted
    print("InPoly(player.Pos.x, player.Pos.y, "+x1_+", "+y1_+", "+x2_+", "+y2_+", "+x3_+", "+y3_+", "+x4_+", "+y4_+"); " );
}
Pages: 1 ... 7 8 [9] 10
© Liberty Unleashed Team.