Skip to content

Fix deprecations, correct return values #96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Apr 9, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More fixes into testgm.pwn
  • Loading branch information
NexiusTailer committed Apr 4, 2025
commit df7f3778151914f77f24d8c88fe2d467760745d3
9 changes: 2 additions & 7 deletions amx-test/testgm.pwn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <a_samp>
#include <a_amx>

new bot, bots, marker;
new bot, bots;

main()
{
Expand Down Expand Up @@ -145,7 +145,7 @@ public OnPlayerSpawn(playerid)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
marker = CreateMarker(x, y, z, "checkpoint", 3.0, 255, 0, 0, 250);
CreateMarker(x, y, z, "checkpoint", 3.0, 255, 0, 0, 250);

CreateBot(0, x, y, z);
SetBotPos(bot, x, y, z);
Expand Down Expand Up @@ -279,11 +279,6 @@ public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
return 1;
}

public OnPlayerInfoChange(playerid)
{
return 1;
}

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
return 1;
Expand Down