Advertisement
Guest User

Untitled

a guest
Sep 29th, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. /*
  2. Erstellt von Maax
  3. Ich währe traurig wer das hier Entfernt ! ^^
  4. */
  5.  
  6. #include <a_samp>
  7. #include <ocmd>
  8.  
  9. #define dCREATELABEL 3666
  10.  
  11. #define sichtweite 10.0
  12.  
  13. #if defined FILTERSCRIPT
  14.  
  15. public OnFilterScriptInit()
  16. {
  17. print("\n--------------------------------------");
  18. print(" MAAX");
  19. print("--------------------------------------\n");
  20. return 1;
  21. }
  22.  
  23. public OnFilterScriptExit()
  24. {
  25. return 1;
  26. }
  27.  
  28. #else
  29.  
  30. main()
  31. {
  32. print("\n----------------------------------");
  33. print(" MAAX");
  34. print("----------------------------------\n");
  35. }
  36.  
  37. #endif
  38.  
  39. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  40. {
  41. if(dialogid == dCREATELABEL)
  42. {
  43. if(response == 1)
  44. {
  45. new Float:X, Float:Y, Float:Z;
  46. GetPlayerPos( playerid, X, Y, Z );
  47. Create3DTextLabel(inputtext, 0x008080FF, X,Y,Z, sichtweite, 0, 0);
  48. SendClientMessage(playerid, 0x008080FF, ">> Text wurde erstellt und platziert!");
  49. }
  50. if(response == 0)
  51. { }
  52. }
  53. return 1;
  54. }
  55.  
  56.  
  57. ocmd:cl(playerid,params[])
  58. {
  59. ShowPlayerDialog(playerid, dCREATELABEL, DIALOG_STYLE_INPUT, "Text Erstellen", "{808080}Bitte gebe in das untere Feld den Text ein!", "Absenden", "Abbrechen");
  60. return 1;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement