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  Scripting / Script Help / How it is possible to throw out the player from the car? on: August 24, 2012, 01:01:44 pm
I made command to slap the player but when it in the machine, the machine rises up together with it. I need to make that at first would throw out it from the machine.
17  Scripting / Script Help / Double message connect/disconnect , I do not know where the second. on: August 24, 2012, 08:57:17 am
Double message connect/disconnect , I do not know where the second, it isn't present in a script. What to do?
18  Scripting / Script Help / Whether possibly the timer to make a blinking of headlights at the car? on: August 23, 2012, 08:51:18 am
it is possible to make a blinking of headlights at the car by means of the timer?
19  Scripting / Script Help / Re: It is possible to make 3D text as in single? on: August 23, 2012, 04:08:38 am
You mean like samp? Not yet maybe next version will have that ability.

Okay  :)
20  Scripting / Script Help / It is possible to make 3D text as in single? on: August 23, 2012, 04:04:36 am
It is possible to make 3D text as in single? :)


21  Liberty Unleashed / Suggestions / White system messages and "RemoveBuildingForPlayer". on: August 23, 2012, 03:29:06 am
White system messages (not color) and "RemoveBuildingForPlayer".
22  Scripting / Script Help / Re: How to make connect/disconnect messages in chat? on: August 23, 2012, 03:02:22 am
For connecting: there is a clientside event called onPlayerJoin(). Returning 0 in this function will disable the built in message from appearing. Returning 1 will show the message.

This same thing goes for disconnecting, but with the clientside event called onPlayerPart().

Also, these constants in the wiki may be of some use for disconnecting:
PARTREASON_DISCONNECTED
PARTREASON_TIMEOUT
PARTREASON_KICKED
PARTREASON_BANNED

Correctly?

Code: [Select]
function OnPlayerJoin( player )
{
     Message( "Blah " + player.Name + " Blah" );
}

Code: [Select]
function onPlayerPart( player, reason )
{
     if ( reason == PARTREASON_DISCONNECTED ) Message( "Blah " + player.Name + " Blah Blah" );
     if ( reason == PARTREASON_TIMEOUT ) Message( "Blah " + player.Name + " Blah Blah" );
     if ( reason == PARTREASON_KICKED ) Message( "Blah " + player.Name + " Blah Blah" );
     if ( reason == PARTREASON_BANNED ) Message( "Blah " + player.Name + " Blah Blah." );
     
     return 1;
}
23  Scripting / Script Help / How to make a teleport through a command? on: August 23, 2012, 01:43:00 am
How to make a teleport through a command?
24  Scripting / Script Help / How to make connect/disconnect messages in chat? on: August 22, 2012, 10:55:48 pm
How to make connect/disconnect messages in chat?)
25  Scripting / Script Help / Re: How to make pickup with the paid weapon? on: August 22, 2012, 04:10:51 am
Thank you very much.
26  Scripting / Script Help / Re: To give money to the killer on: August 22, 2012, 04:08:53 am
needed check
27  Scripting / Script Help / To give money to the killer on: August 22, 2012, 01:14:55 am
so?

Code: [Select]
function onPlayerKill( killer, player, reason, bodypart )
{
     killer.Cash += 10000;
     
     return 1;
}
28  Scripting / Script Help / How to make pickup with the paid weapon? on: August 22, 2012, 12:56:42 am
How to make pickup with the paid weapon as in single game?
29  Liberty Unleashed / Bug Reports / It is not visible one letter in a chat in Russian. on: August 17, 2012, 09:27:04 am
Forgive for my bad English. I use the translator because I Russian.

1) 0.1.0.12
2) Mistake constant. Occurs when we write the message to a chat.
3) -
4) -
5) The mistake is that when we write to a chat on Russian, it is not visible letter .
Pages: 1 [2]
© Liberty Unleashed Team.