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 / GUI on: January 11, 2011, 04:48:46 pm
How to make GUI menus and other stuff like labels?
2  Liberty Unleashed / Suggestions / My suggestions on: December 23, 2010, 01:44:13 pm
* Car surfing - Make that you don't fall of from car roof (like in SAMP)
* Bots, NPCs
* Fixed hydraulics for Yardie Lobo and if possible function to set hyds for every car (if possible)
* Turret mode.
* Abilty to edit shooting anims in weapon.dat (To make M16 without awesome rate of fire)
* Passenger drivebys with aiming (Would be very hard to script, but its just awesome for gangwars (similar like in samp)
* Abilty to sync driver driveby (change rate of fire, damage, add reloading. make it more realistic.
* Create nice map editor, similar like in MTA.
* Add missing rooftops (A lots of work)
* Synced boats.
* Increase Virtual world limits (For RP servers, for house and bizz interiors you'd need more virtual worlds)
* If possible, function to attach object to player.
3  Scripting / Script Help / Need help with object loading script on: November 16, 2010, 08:25:09 pm
Code: [Select]
function LoadObjects()
{
local a = 1, b = MAX_OBJECTS, text;

while (  a < b  )
{
text = ReadIniString( "data/Objects.ini", "Objects", a.tostring() );
if(text)
{
// ID=ModelID PositionX PositionY PositionZ AngleX AngleY AngleZ
local text2, modelid, posx, posy, posz, anglex, angley, anglez;
text2 = split( text, " " );
modelid = text2[0].tointeger();
posx = text2[1].tofloat();
posy = text2[2].tofloat();
posz = text2[3].tofloat();
anglex = text2[4].tofloat();
angley = text2[5].tofloat();
anglez = text2[6].tofloat();
local object;
object = CreateObject( modelid, Vector(posx,posy,posz ) );
object.Angle = Vector( anglex, angley, anglez );

}
a ++;
}
}

I don't know why, but this function isnt working correctly. And server script returns error: 'self' isn't instance of Object.
4  Scripting / Script Help / Limits on: November 10, 2010, 04:32:40 pm
Hello, I would like to know MAX limits for: Vehicles, pickups, objects.
5  Scripting / Script Help / Can't update Windows server. on: November 09, 2010, 04:18:32 pm
Hello, I have one problem. I can't update windows server. When I launch server, after some time it closes and appears DOS window with text: Fail! Server directory\Server.exe Press any key to continue. When I press key, then this window appears again. Downloading newest server and placing its Server.exe didn't helped, then it returned: This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information and appears "Send error report" window.

edit: sorry, wrong board..
edit: fixed, problem was with scripting
Pages: [1]
© Liberty Unleashed Team.