25.07.2016, 21:26
In this thread you can chat with others on any topic using code.
He you can also post funny piece of sh*it,sorry no,i mean funny piece of code
He you can also post funny piece of sh*it,sorry no,i mean funny piece of code
Code:
#include <a_samp> #define MAX_MEMBERS 282910 //I got Coordinates from > Here < new Float:USA_N = 37.0902; new Float:USA_W = 95.7129; new Float:x, Float:y, Float:z stock IsMemberAlive(memberid) { if(BreathRate(memberid) >= 1) { return 1; } else return 0; } for(new i = 0; i < MAX_MEMBERS; i++) { if(IsMemberAlive(i)) { GetMemberPos(i, n, w); if(n == USA_N && w == USA_W || strfind(Location, "USA")) { SendClientMessage(i, 0xFFFFFFFF, "Hello USA Members!"); } } }