Guest User

Untitled

a guest
Apr 19th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.12 KB | None | 0 0
  1. //==============================================================================[Includes]
  2. #include <a_samp>
  3. //==============================================================================[News]
  4. new Text:XTree;
  5. //==============================================================================[Publics]
  6. public OnFilterScriptInit()
  7. {
  8.     print("\n--------------------------------------");
  9.     print(" Tree [0.3d] by Mr.R !");
  10.     print("--------------------------------------\n");
  11.     XTree = TextDrawCreate(540.0, 328.0, "logochoinka:choinka");
  12.     TextDrawFont(XTree, 4);
  13.     TextDrawColor(XTree,0xFFFFFFFF);
  14.     TextDrawTextSize(XTree,100.0,120.0);
  15.     return 1;
  16. }
  17. public OnPlayerConnect(playerid)
  18.     return TextDrawShowForAll(XTree);
  19.  
  20. public OnPlayerDisconnect(playerid, reason)
  21.     return TextDrawHideForAll(XTree);
  22. //==============================================================================[End]
  23.                                                                                                                                                                                                                                                                                                                     /*
  24.     Paste [logochoinka.txd] to [.../Rockstar Games/GTA San Andreas/models/txd ]
  25.                                                                                                                                                                                                                                                                                                                     */
Add Comment
Please, Sign In to add comment