Slow motion problem
#1

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?
Reply
#2

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.
Reply
#3

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
Reply
#4

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

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
Reply
#6

I'll try it out.
Reply
#7

I'll post the command in a sec
Reply
#8

Код:
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;
}
Reply
#9

anyone?
Reply
#10

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;
}
Reply


Forum Jump:


Users browsing this thread: 6 Guest(s)