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  Scripting / Script Help / Re: I need help for two commands on: April 06, 2011, 04:22:49 pm
Quote
So how to Call LoadHashes ?

Code: [Select]
function onScriptLoad()
{
LoadHashes();
}
2  Scripting / Script Help / Re: I need help for two commands on: April 04, 2011, 10:58:10 pm
There is nothing wrong with that script, you've messed up something I guess.
3  Scripting / Script Help / Re: Can I make a specified vehicle everythingproof on: January 01, 2011, 01:37:35 am
Code: [Select]
IsSpecial <- false;

function onPlayerCommand( pPlayer, szCommand, szText )
{
                if ( szCommand == "veh_special" )
                {
                                if ( szText == "1" )
                                {
                                                local pos = pPlayer.Pos;
                                                local vehspc = CreateVehicle( VEH_PATRIOT, Vector( pos.x + 5, pos.y, pos.z + 2 ), pPlayer.Angle, 0, 6 );
                                                vehspc.OneTime = true;
                                                CallFunc( "Scripts/Main/specials.nut", "onVehicleHealthChange", vehspc );
                                                IsSpecial = true;
                                }
                }
                return 1;
}

Code: [Select]
function onVehicleHealthChange( vehspc, oldhp, newhp )
{
                if ( newhp < 1000 )
                {
                                if ( vehspc.Driver.Name == "ADFENO" && IsSpecial == true ) vehspc.Fix();
                }
return 1;
}
4  News and Content / Liberty Unleashed News / Re: Release Date! on: October 25, 2010, 02:32:14 pm
Finally a release date!
5  Off Topic / General Chat / Re: GTA:IV Benchmarks on: February 10, 2010, 11:53:42 pm
Statistics
Average FPS: 47.66
Duration: 37.16 sec
CPU Usage: 86%
System memory usage: 63%
Video memory usage: 79%

Graphics Settings
Video Mode: 1680 x 1050 (60 Hz)
Texture Quality: High
Texture Filter Quality: High
View Distance: 45
Detail Distance: 45

Hardware
Microsoft Windows 7 Ultimate
Microsoft Windows 7 Ultimate
Video Adapter: NVIDIA GeForce 9800 GT 
Video Driver version: 196.21
Audio Adapter: Speakers (High Definition Audio Device)
Intel(R) Core(TM)2 Quad CPU    Q8300  @ 2.50GHz
6  Liberty Unleashed / Liberty Unleashed Chat / Re: Squirrel Scripting on: June 01, 2009, 10:24:51 pm
Use "Notepad+" you can use colour syntax with that.
Pages: [1]
© Liberty Unleashed Team.