SA-MP Forums Archive
Slow motion problem - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Slow motion problem (/showthread.php?tid=118366)



Slow motion problem - help! - 03.01.2010

I've looked everywhere and tried to find some way to put people in slow motion, and eventually I found a command that creates a slow motion pickup right where you are.

I added this in the script, and when I type the command, it doesn't put me in slow motion AT ALL, it just makes the game go fast for about 4 seconds, then goes back to normal.

any reason why?


Re: Slow motion problem - robert4049 - 03.01.2010

I have a feeling that's near impossibly cause what has to happen is lower the FPS (Frames Per Second) Which Is Typicaly Around 35 Which I Normal Game-play And I am Not Aware Of A Pawno Function That Changes That Your Best Bet is Something Like A Lag Switch Witch Deals With Hardware A Bit.


Re: Slow motion problem - help! - 03.01.2010

I also tested this with a friend and he got the same affect. If any SAMP dev or someone else can test this and post here confirming this bug, that would be really appreciated. This is frustrating


Re: Slow motion problem - Agent Smith - 03.01.2010

Post the function for us to test. I've not seen it around.


Re: Slow motion problem - dice7 - 03.01.2010

Quote:
Originally Posted by samdudes01
Post the function for us to test. I've not seen it around.
Just create an adrenaline pill with CreatePickup and pick it up


Re: Slow motion problem - Agent Smith - 03.01.2010

I'll try it out.


Re: Slow motion problem - help! - 03.01.2010

I'll post the command in a sec


Re: Slow motion problem - help! - 03.01.2010

Код:
if(strcmp(cmd, "/slowmo", true) == 0)
{
  new Float:x, Float:y, Float:z;
  GetPlayerPos(playerid, x, y, z);
  CreatePickup(1241, 3, x, y, z);
  return 1;
}



Re: Slow motion problem - help! - 11.01.2010

anyone?


Re: Slow motion problem - BP13 - 11.01.2010

Quote:
Originally Posted by jarrah
Код:
if(strcmp(cmd, "/slowmo", true) == 0)
{
  new Float:x, Float:y, Float:z;
  GetPlayerPos(playerid, x, y, z);
  CreatePickup(1241, 3, x, y, z);
  return 1;
}
pawn Код:
if(strcmp(cmd, "/slowmo", true) == 0)
{
  new Float:x, Float:y, Float:z;
  GetPlayerPos(playerid, x, y, z);
  CreatePickup(1241, 4, x, y, z);
  return 1;
}