Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Slark__ on Oct 10, 2016, 09:13 AM

Title: onObjectBump dose wokring
Post by: Slark__ on Oct 10, 2016, 09:13 AM
function onObjectBump(object, player)
{
if ( object == gate )
{
MessagePlayer("Hello",player);
}
}

dose not working help pls.
Title: Re: onObjectBump dose wokring
Post by: EK.IceFlake on Oct 10, 2016, 12:03 PM
There was a property, you must set it to 'true', it's called object.TrackingBumps
object.TrackingBumps = true;
Title: Re: onObjectBump dose wokring
Post by: Slark__ on Oct 10, 2016, 06:33 PM
Quote from: EK.CrystalBlue on Oct 10, 2016, 12:03 PMThere was a property, you must set it to 'true', it's called object.TrackingBumps
object.TrackingBumps = true;

like that?

function onObjectBump(object, player)
{
if ( object == gate )
{
object.TrackingBumps = true;
MessagePlayer("Hello",player);
}
}
Title: Re: onObjectBump dose wokring
Post by: Kewun on Oct 10, 2016, 06:39 PM
no..
when you used
gate <- CreateObject, after that, put gate,TrackingBumps = true
so

gate<-CreateObject(Yourshits)
gate.TrackingBumps=true
Title: Re: onObjectBump dose wokring
Post by: Diego^ on Oct 10, 2016, 07:43 PM
An example:

function onScriptLoad()
{
gate <- CreateObject( 405, 1, 1.1111, 1.1111, 1.1111, 255 );
gate.TrackingBumps = true;
}

function onObjectBump( object, player )
{
if ( object.ID == gate.ID ) player.Kick();
}