Cimbur

Untitled

Feb 14th, 2014
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. forward PokaziRegister(playerid);
  2. public PokaziRegister(playerid)
  3. {
  4. if(fexist(UserPath(playerid)))
  5. {
  6. INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
  7. ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,"Prijavljivanje","Ukucajte lozinku da bi se ulogovali","Prijavi se","Izadji");
  8. }
  9. else
  10. {
  11. new string[250];
  12. new name[MAX_PLAYER_NAME];
  13. GetPlayerName(playerid, name, sizeof(name));
  14. format(string,sizeof(string),"{FA0707}_______________________________\n\n{FAF2F7}Dobrodosao {FA0707}%s, \n\n{FAF2F7}upisi lozinku ako se zelis pristupiti\n{FA0707}R{FAF2F7}adius {FA0707}G{FAF2F7}aming {FA0707}S{FAF2F7}erver-u.\n\n{FA0707}_______________________________",name);
  15. ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT, "REGISTRACIJA", string, "Uredu", "");
  16. }
  17. return 1;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment