[FilterScript] Trampoline
#13

Nice, however this code isn't going to work:

pawn Код:
public OnFilterScriptInit()
{
  SetTimer("Bounce", 750, true);
  return 1;
}

forward Bounce(playerid);
public Bounce(playerid)
{
        new Float:x, Float:y, Float:z;
        GetObjectPos(trampoline, x, y, z);
        if(IsPlayerInRangeOfPoint(playerid, 2.25, x, y, z+2.0))
        {
        SetPlayerVelocity(playerid, 0.0, 0.0, 0.5);
        }
}
playerid will always be '0' as no values are entered. This of course worked during testing as you were ID 0, but for others this will not work.

You need to use a loop:

pawn Код:
forward Bounce();
public Bounce()
{
    new Float:x, Float:y, Float:z;
    GetObjectPos(trampoline, x, y, z);
    for(new i; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerInRangeOfPoint(i, 2.25, x, y, z+2.0))
        {
          SetPlayerVelocity(i, 0.0, 0.0, 0.5);
        }
    }
}
Reply


Messages In This Thread
Trampoline - by VonKnox - 20.12.2010, 02:40
Re: Trampoline - by Rokzlive - 20.12.2010, 02:55
Re: Trampoline - by Steven82 - 20.12.2010, 03:10
Re: Trampoline - by Gavibro - 20.12.2010, 03:33
Re: Trampoline - by willsuckformoney - 20.12.2010, 03:37
Re: Trampoline - by VonKnox - 20.12.2010, 03:40
Re: Trampoline - by Lorenc_ - 20.12.2010, 04:17
Re: Trampoline - by ExeC - 20.12.2010, 04:37
Re: Trampoline - by Fool - 20.12.2010, 05:57
Re: Trampoline - by VonKnox - 20.12.2010, 06:29
Re: Trampoline - by MestreKiller - 20.12.2010, 07:01
Re: Trampoline - by X35B - 20.12.2010, 08:35
Re: Trampoline - by Hiddos - 20.12.2010, 09:27
Re: Trampoline - by VonKnox - 20.12.2010, 11:12
Re: Trampoline - by schillow - 20.12.2010, 12:51
Re: Trampoline - by Den_Deluxe - 20.12.2010, 16:57
Re: Trampoline - by =Ebrala= - 20.12.2010, 17:03
Re: Trampoline - by WillyP - 20.12.2010, 17:22
Re: Trampoline - by MrDeath537 - 20.12.2010, 17:38
Re: Trampoline - by Noss* - 21.12.2010, 19:57
Re: Trampoline - by BittleRyan - 21.12.2010, 21:52
Re: Trampoline - by Noss* - 22.12.2010, 10:53
Re: Trampoline - by Haydz - 22.12.2010, 12:07
Re: Trampoline - by 1337connor - 22.12.2010, 20:20
Re: Trampoline - by Rihsan - 23.12.2010, 06:49
Re: Trampoline - by davve95 - 23.09.2011, 13:34
Re: Trampoline - by Edvin - 23.09.2011, 16:43
Re: Trampoline - by Michael_Henry - 29.09.2011, 07:16

Forum Jump:


Users browsing this thread: 1 Guest(s)