Gibts dafür TuTorials ? Ich hab Probleme..
//Edit : Wenn ich TextDrawCreate benutze und bei OnPlayerSpawn eintrage wird kein Text angezeigt!
//Edit2: Auch wenn ich das Original aus dem Forum kopiere funktioniert des nicht!
Hier::
Habs getestet; und es funktioniert 
#include <a_samp>
new NDM_Zone;
new Text:No_Dm;
main() {}
public OnGameModeInit()
{
//=====// TEXTDRAW //=====//
No_Dm = TextDrawCreate(40.000000, 324.000000, "No-DM Zone");
TextDrawBackgroundColor(No_Dm, 255);
TextDrawFont(No_Dm, 1);
TextDrawLetterSize(No_Dm, 0.490000, 1.300000);
TextDrawColor(No_Dm, -16776961);
TextDrawSetOutline(No_Dm, 0);
TextDrawSetProportional(No_Dm, 1);
TextDrawSetShadow(No_Dm, 1);
TextDrawUseBox(No_Dm, 1);
TextDrawBoxColor(No_Dm, 255);
TextDrawTextSize(No_Dm, 140.000000, 0.000000);
//=====// OTHERS //=====//
SetTimer("CheckArea",500,true);
NDM_Zone = GangZoneCreate(1060.546875, -1400.390625, 1335.9375, -1289.0625);
return 1;
}
public OnPlayerConnect(playerid)
{
GangZoneShowForAll(NDM_Zone, 0xFF0000A6);
return 1;
}
IsPlayerInArea(playerid, Float:MinX, Float:MinY, Float:MaxX, Float:MaxY)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
if(X >= MinX && X <= MaxX && Y >= MinY && Y <= MaxY) {
return 1;
}
return 0;
}
forward CheckArea(playerid);
public CheckArea(playerid)
{
if(IsPlayerInArea(playerid,1060.546875, -1400.390625, 1335.9375, -1289.0625))
{
TextDrawShowForPlayer(playerid,No_Dm);
return 1;
}
return 1;
}