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 Snippets / Command to fill a player armour [En espaƱol] on: October 26, 2012, 08:57:32 pm
To add this command to your server you have to enter the folder server/scripts/Main/[Files] and open the file with WordPad main.nut or something.

After the function onPlayerCommand add this command:

Code: [Select]
if ( szCmd == "darchaleco" )
{
if ( !szParams ) MessagePlayer( "[Error] Utiliza: /DarChaleco [id/player]", pPlayer );
else
{
local pTemp = split( szParams, " " ), p = GetPlayer( pTemp[ 0 ] );
if ( p )
{
if ( p.Spawned )
{
p.Armour = 100;
MessagePlayer("El jugador " + p.Name + " ha recibido " + p.Armour + " de chaleco.", pPlayer );
}
else MessagePlayer( "Esta persona no se genera nub!", pPlayer );
}
else MessagePlayer( "No se ha podido encontrar a nadie con ese id / nick", pPlayer );
}
}

Hope you like. A greeting to all.
2  Liberty Unleashed / Bug Reports / Display error game server. on: October 26, 2012, 08:35:13 pm
The error is very simple to explain. When I go to a server initiates all very well, but when it comes to the game and see the character screen looks like this:


I hope to show a picture of the game's video options.


Furthermore, within the original game (not server LU) screen looks great and the video game options are available. My operating system is Windows XP Professional + Windows 7 (I have both installed and none does not work)

Here a picture in the game (not server LU):


Could someone tell me what's wrong? Thanks for reading the message, I hope your answers.
Pages: [1]
© Liberty Unleashed Team.