Skip to content

Commit 0b76e30

Browse files
committed
Remove (Get/Set)VehicleVelocity from readme
they declared like new functions, but it's not
1 parent 54170dc commit 0b76e30

File tree

2 files changed

+0
-29
lines changed

2 files changed

+0
-29
lines changed

README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ features:
6666
- [GetPlayerClothes](#GetPlayerClothes)
6767
- [RemovePlayerClothes](#RemovePlayerClothes)
6868
- [ShowPlayerMarker](#ShowPlayerMarker)
69-
- [GetVehicleVelocity](#GetVehicleVelocity)
70-
- [SetVehicleVelocity](#SetVehicleVelocity)
7169
- [SetVehicleModel](#SetVehicleModel)
7270

7371
- In addition to these new native functions, gamemodes run in *amx*
@@ -324,23 +322,6 @@ native ShowPlayerMarker ( playerid, show );
324322

325323
Shows or hides the blip of one specific player.
326324

327-
### GetVehicleVelocity
328-
329-
```pawn
330-
native GetVehicleVelocity ( vehicleid, &Float:vx, &Float:vy, &Float:vz );
331-
```
332-
333-
Returns the velocity of a vehicle along the x, y and z axes. No more
334-
manual speed calculation with timers.
335-
336-
### SetVehicleVelocity
337-
338-
```pawn
339-
native SetVehicleVelocity ( vehicleid, Float:vx, Float:vy, Float:vz );
340-
```
341-
342-
Sets the velocity of a vehicle. Make it jump or suddenly come to a halt.
343-
344325
### SetVehicleModel
345326

346327
```pawn

amx-deps/install.html

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ <h2 id="extrafeatures">Extra features</h2>
5757
<li><a href="#pwn_GetPlayerClothes">GetPlayerClothes</a></li>
5858
<li><a href="#pwn_RemovePlayerClothes">RemovePlayerClothes</a></li>
5959
<li><a href="#pwn_ShowPlayerMarker">ShowPlayerMarker</a></li>
60-
<li><a href="#pwn_GetVehicleVelocity">GetVehicleVelocity</a></li>
61-
<li><a href="#pwn_SetVehicleVelocity">SetVehicleVelocity</a></li>
6260
<li><a href="#pwn_SetVehicleModel">SetVehicleModel</a></li>
6361
</ul>
6462
</li>
@@ -180,14 +178,6 @@ <h3 id="pwn_ShowPlayerMarker">ShowPlayerMarker</h3>
180178
<code class="block" lang="pawn"><span class="kw1">native</span> ShowPlayerMarker <span class="br">(</span> playerid, show <span class="br">)</span>;</code>
181179
<p>Shows or hides the blip of one specific player.</p>
182180

183-
<h3 id="pwn_GetVehicleVelocity">GetVehicleVelocity</h3>
184-
<code class="block" lang="pawn"><span class="kw1">native</span> GetVehicleVelocity <span class="br">(</span> vehicleid, &amp;<span class="type">Float</span>:vx, &amp;<span class="type">Float</span>:vy, &amp;<span class="type">Float</span>:vz <span class="br">)</span>;</code>
185-
<p>Returns the velocity of a vehicle along the x, y and z axes. No more manual speed calculation with timers.</p>
186-
187-
<h3 id="pwn_SetVehicleVelocity">SetVehicleVelocity</h3>
188-
<code class="block" lang="pawn"><span class="kw1">native</span> SetVehicleVelocity <span class="br">(</span> vehicleid, <span class="type">Float</span>:vx, <span class="type">Float</span>:vy, <span class="type">Float</span>:vz <span class="br">)</span>;</code>
189-
<p>Sets the velocity of a vehicle. Make it jump or suddenly come to a halt.</p>
190-
191181
<h3 id="pwn_SetVehicleModel">SetVehicleModel</h3>
192182
<code class="block" lang="pawn"><span class="kw1">native</span> SetVehicleModel <span class="br">(</span> vehicleid, model <span class="br">)</span></code>
193183
<p>Changes the model of a vehicle; more practical than destroying and recreating it.</p>

0 commit comments

Comments
 (0)