Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Erstellt von Maax
- Ich währe traurig wer das hier Entfernt ! ^^
- */
- #include <a_samp>
- #include <ocmd>
- #define dCREATELABEL 3666
- #define sichtweite 10.0
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" MAAX");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- #else
- main()
- {
- print("\n----------------------------------");
- print(" MAAX");
- print("----------------------------------\n");
- }
- #endif
- public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
- {
- if(dialogid == dCREATELABEL)
- {
- if(response == 1)
- {
- new Float:X, Float:Y, Float:Z;
- GetPlayerPos( playerid, X, Y, Z );
- Create3DTextLabel(inputtext, 0x008080FF, X,Y,Z, sichtweite, 0, 0);
- SendClientMessage(playerid, 0x008080FF, ">> Text wurde erstellt und platziert!");
- }
- if(response == 0)
- { }
- }
- return 1;
- }
- ocmd:cl(playerid,params[])
- {
- ShowPlayerDialog(playerid, dCREATELABEL, DIALOG_STYLE_INPUT, "Text Erstellen", "{808080}Bitte gebe in das untere Feld den Text ein!", "Absenden", "Abbrechen");
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement