Bicas

Untitled

Jun 22nd, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. CMD::testuojam(playerid, params[])
  2. {
  3. Dialog_Show(playerid, DIALOG_TEST, DIALOG_STYLE_INPUT, "TEST", "Irašykie nick", "Toliau", "Išeiti");
  4. return true;
  5. }
  6.  
  7. Dialog::DIALOG_TEST(playerid, response, listitem, inputtext[], params[])
  8. {
  9. NO return true;
  10. YES
  11. {
  12. new
  13. msg[51]
  14. ;
  15. if(sscanf(params, "us[50]", listitem, msg)) return Dialog_Show(playerid, DIALOG_TEST, DIALOG_STYLE_INPUT, "TEST", "Irašykie nick", "Toliau", "Išeiti");
  16. if(listitem == INVALID_PLAYER_ID) return SendServerMSG(playerid, "Tokio žaidėjo nėra");
  17. else
  18. {
  19. format(msg, sizeof(msg), "veikia");
  20. SendServerMSG(playerid, msg);
  21. }
  22. }
  23. return true;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment