Skip to content

Commit

Permalink
0.3z-R2-2
Browse files Browse the repository at this point in the history
  • Loading branch information
Southclaws committed Feb 2, 2018
1 parent e3b9b7b commit 4b40f86
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 5 additions & 2 deletions a_players.inc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* SA-MP Player Functions
*
* (c) Copyright 2005-2012, SA-MP Team
* (c) Copyright 2005-2014, SA-MP Team
*
*/
Expand Down Expand Up @@ -260,4 +260,7 @@ native StartRecordingPlayerData(playerid, recordtype, recordname[]);
native StopRecordingPlayerData(playerid);
native SelectTextDraw(playerid, hovercolor); // enables the mouse so the player can select a textdraw
native CancelSelectTextDraw(playerid); // cancel textdraw selection with the mouse
native CancelSelectTextDraw(playerid); // cancel textdraw selection with the mouse
// Explosion
native CreateExplosionForPlayer(playerid, Float:X, Float:Y, Float:Z, type, Float:Radius);
8 changes: 6 additions & 2 deletions a_samp.inc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* SA-MP Functions
*
* (c) Copyright 2005-2012, SA-MP Team
* (c) Copyright 2005-2014, SA-MP Team
*
*/
Expand Down Expand Up @@ -58,7 +58,8 @@ native SendClientMessage(playerid, color, const message[]);
native SendClientMessageToAll(color, const message[]);
native SendPlayerMessageToPlayer(playerid, senderid, const message[]);
native SendPlayerMessageToAll(senderid, const message[]);
native SendDeathMessage(killer,killee,weapon);
native SendDeathMessage(killer, killee, weapon);
native SendDeathMessageToPlayer(playerid, killer, killee, weapon);
native GameTextForAll(const string[],time,style);
native GameTextForPlayer(playerid,const string[],time,style);
native SetTimer(funcname[], interval, repeating);
Expand Down Expand Up @@ -121,6 +122,8 @@ native GetServerVarAsBool(const varname[]);
native GetPlayerNetworkStats(playerid, retstr[], retstr_size);
native GetNetworkStats(retstr[], retstr_size);
native GetPlayerVersion(playerid, const version[], len); // Returns the SA-MP client revision as reported by the player
native BlockIpAddress(ip_address[], timems);
native UnBlockIpAddress(ip_address[]);
// Extended admin network stats
native GetServerTickRate();
Expand Down Expand Up @@ -349,6 +352,7 @@ forward OnPlayerGiveDamage(playerid, damagedid, Float:amount, weaponid, bodypart
forward OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ);
forward OnPlayerClickTextDraw(playerid, Text:clickedid);
forward OnPlayerClickPlayerTextDraw(playerid, PlayerText:playertextid);
forward OnIncomingConnection(playerid, ip_address[], port);
#define CLICK_SOURCE_SCOREBOARD 0
forward OnPlayerClickPlayer(playerid, clickedplayerid, source);
Expand Down

0 comments on commit 4b40f86

Please sign in to comment.