-
Posts
1,058 -
Joined
-
Last visited
-
Days Won
1
Saml1er last won the day on May 7 2018
Saml1er had the most liked content!
Member Title
- Retired MTA Team
Details
-
Gang
CJ
Recent Profile Visitors
6,073 profile views
Saml1er's Achievements

[email protected] (35/54)
49
Reputation
-
You were banned for sharing a leaked gamemode that contained backdoors. In fact, you were even threatening the server owner that you'll leak his server database and you were boasting about it on your discord. It's pretty clear that you knew what you were doing. Your ban is temporary, you'll have to wait for it to expire. Appeal denied.
-
What is your MTA version? You can check it by writing "ver" in the F8 console. Can you check for recent crash dumps in DRIVE:\Program Files (x86)\MTA San Andreas 1.5\MTA\dumps\private? If you do find new crash dumps, then please upload them to https://upload.mtasa.com and paste the link here (only MTA staff can access it).
- 1 reply
-
- 1
-
-
if (objectMovingTick - getTickCount()) < gateCommandWaitInMs then I made a typo here. This should be: if (getTickCount() - objectMovingTick) < gateCommandWaitInMs then
-
local gateCommandWaitInMs = 3000 -- 3000 milliseconds. You can increase or decrease this value to meet your requirements local objectMovingTick = getTickCount() + gateCommandWaitInMs -- we are adding this to tick, so we don't have to wait for 3 seconds in first use gateLSPD = false x, y, z = getElementPosition ( source ) if getDistanceBetweenPoints3D ( x, y, z, 1544.24707, -1631.90906, 13.38281 ) <= 2 then if (objectMovingTick - getTickCount()) < gateCommandWaitInMs then -- check if 3000 milliseconds have passed return end if gateLSPD == false then local rotX, rotY, rotZ = getElementRotation(shlagLSPD) moveObject ( shlagLSPD, 2000, 1544.6999511719, -1630.9000244141, 13.10000038147, 0, -80, 0 ) gateLSPD = true else local rotX, rotY, rotZ = getElementRotation(shlagLSPD) moveObject ( shlagLSPD, 2000, 1544.6999511719, -1630.9000244141, 13.10000038147, 0, 80, 0 ) gateLSPD = false end objectMovingTick = getTickCount() end You can use getTickCount to fix the problem.
-
Nice work. We really need something like this.
-
So, you simply want the ability to shoot with a weapon when you are close to a wall or when a player is blocking you with his elbow? Currently, you can't do that. I can add this ability to: setGlitchEnabled Create a new issue on github and paste the link here.
-
Open F8 > Write "ver" > Enter > copy-paste the build version here.
-
Have you tried using setPedFightingStyle ?
-
Have you checked ifp_demo resource? animations are synced there.
-
Copy-paste your meta.xml here. Also, make sure that rifle.ifp is located in the top directory of the resource.