Skip to content

Instantly share code, notes, and snippets.

View Crayder's full-sized avatar
🥇

Corey Iles Crayder

🥇
View GitHub Profile
@Southclaws
Southclaws / texturemap
Created May 31, 2014 22:59
Bitmap object placement filterscript
#include <a_samp>
#include <MapAndreas> // -
#include <easybmp> // -
#include <YSI\y_iterate> // -
#include <virtualcanvas> // - https://gist.github.com/Southclaw/9dc3e084370e6998ec08
#include <streamer> // -
#include <formatex> // -
#pragma dynamic 64000
#define FILENAME "./scriptfiles/txmap/basic_small.bmp"
@SDraw
SDraw / 3dspd.pwn
Last active July 4, 2019 19:46
3D speedometer for SA-MP. Similar to JC2MP speedometer, but without rotation.
#define FILTERSCRIPT
#include <a_samp>
#include <streamer>
new SpdObj[MAX_PLAYERS][2];
new bool:UpdateSpeed[MAX_PLAYERS] = {false,...};
public OnPlayerConnect(playerid)
{
UpdateSpeed[playerid] = false;