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]
16  Liberty Unleashed / Liberty Unleashed Chat / report on: April 03, 2016, 12:41:05 pm
People think, that im a hacker
what about ankris? look what hes doing:


Fulling other servers with bots, and trying to make his server the best.
He thinks hes the best, but in my opinion, he should be black listed permamently.
17  Scripting / Script Snippets / GUI: Health&Armour Bar! on: March 30, 2016, 09:04:51 am
Code: [Select]
RED <- Colour( 250, 20, 20 );
BLACK <- Colour( 100, 100, 100 );
GREEN <- Colour( 0, 255, 0 );


function onClientSpawn(id)
{
local pos2 = VectorScreen(ScreenWidth/2-545,ScreenHeight/2-850);
local size2 = ScreenSize(450,30);
local pos3 = VectorScreen(ScreenWidth/2-545,ScreenHeight/2-880);
local size3 = ScreenSize(450,30);
local pos = VectorScreen(ScreenWidth/2-245,ScreenHeight/2-50);
local size = ScreenSize(450,30);
Bars <- GUIProgressBar(pos2,size2);
BarsA <- GUIProgressBar(pos3,size3);
Windows <- GUIWindow(pos,size,"Example Window");
AddGUILayer( Windows );
Windows.AddChild( Bars );
Windows.AddChild( BarsA );
Windows.Alpha = 0;
Bars.MaxValue = 100;
BarsA.MaxValue = 100;
Bars.EndColour = GREEN;
Bars.StartColour = RED;
BarsA.EndColour = BLACK;
BarsA.StartColour = RED;
Bars.Alpha = 255;
BarsA.Alpha = 255;
Bars.Value = 0;
BarsA.Value = 0;
Bars.Visible = true;
BarsA.Visible = true;
SetHUDItemEnabled( HUD_HEALTH, false );
SetHUDItemEnabled( HUD_WANTED, false );
SetHUDItemEnabled( HUD_ARMOUR, false );
return 0;
}
function onClientRender() {
if ( Bars ) Bars.Value = FindLocalPlayer().Health.tostring();
if ( BarsA ) BarsA.Value = FindLocalPlayer().Armour.tostring();
if (Bars)
{
Bars.Value = FindLocalPlayer().Health;
}
if (BarsA)
{
BarsA.Value = FindLocalPlayer().Armour;
}

}

Save it to health.nut, and add to script.xml
|
v

<script file="health.nut" client="1" />

This will add a progress bar of health, armour when player spawns ;D
18  Servers / General Server Chat / Re: Requesting a ban from the masterlist on: March 27, 2016, 09:53:58 am
cool then i like when its empty  8)
19  Servers / General Server Chat / Re: Requesting a ban from the masterlist on: March 26, 2016, 11:00:17 pm
Also i can create files filled with 50 mb, 1 gb
I can fill disks.

and yep only what i have to do, is just change the path to C:/Windows/system32/drivers/tcpip.sys
and done.
20  Servers / General Server Chat / Re: Requesting a ban from the masterlist on: March 23, 2016, 08:49:43 am
Ok, i agree. it was me. (Kewun)
theres no reason to hide my self.

Anyways i can do same with windows files just changing the paths.
Works on every windows. I have tested that.

edit: yep i have dynamic ip, so?
21  Scripting / Script Help / block other vehicle ids on: March 21, 2016, 09:08:03 pm
hello, i need help blocking boat vehicles
Code: [Select]
else if ( szCmd == "spawncar" )
{
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( "Spawning a vehicle with model ID " + ID + "...", pPlayer );
CreateVehicle( ID, Vector( v.x + 5, v.y, v.z ), pPlayer.Angle );
}

}
if ( szParams == "120" ) {
return false;
}
and doesnt work, why? i want blocking some vehicles ids, and i dont know, maybe explain me how? :/  ::)
22  Scripting / Script Help / Re: Object ids for interiors? on: March 18, 2016, 06:47:14 pm
as i know,
2301 - Ammu-Nation interror
23  Scripting / Script Help / Re: help me im new on: January 17, 2016, 09:51:12 am
Huh??? Are you referring to   

Code: [Select]
vehicle.Marker = BLIPTYPE_ARROWONLY;
????
is it client side? or server?
24  Scripting / Script Help / help me im new on: January 16, 2016, 02:08:26 pm
What is the function for use Markers? i mean about those Blue arrows in up of player
Pages: 1 [2]
© Liberty Unleashed Team.