Advertisement
Guest User

Leaderboard Gui

a guest
Mar 27th, 2021
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.11 KB | None | 0 0
  1. GTDialog store;                
  2. store.addLabelWithIcon("`wLeaderboard - Top 10", 1430, LABEL_BIG);             
  3. store.addSpacer(SPACER_SMALL);         
  4. store.addSpacer(SPACER_SMALL);
  5. store.addLabelWithIcon("`9#1 I Player: name I Gems: count", LABEL_SMALL);
  6. store.addLabelWithIcon("`9#2 I Player: name I Gems: count", LABEL_SMALL);
  7. store.addLabelWithIcon("`9#3 I Player: name I Gems: count", LABEL_SMALL);
  8. store.addLabelWithIcon("`9#4 I Player: name I Gems: count", LABEL_SMALL);
  9. store.addLabelWithIcon("`9#5 I Player: name I Gems: count", LABEL_SMALL);
  10. store.addLabelWithIcon("`9#6 I Player: name I Gems: count", LABEL_SMALL);
  11. store.addLabelWithIcon("`9#7 I Player: name I Gems: count", LABEL_SMALL);
  12. store.addLabelWithIcon("`9#8 I Player: name I Gems: count", LABEL_SMALL);
  13. store.addLabelWithIcon("`9#9 I Player: name I Gems: count", LABEL_SMALL);
  14. store.addLabelWithIcon("`9#10 I Player: name I Gems: count", LABEL_SMALL);             
  15. store.addSpacer(SPACER_SMALL);         
  16. store.addSpacer(SPACER_SMALL);             
  17. store.addSpacer(SPACER_SMALL);
  18. store.addQuickExit();
  19. store.endDialog("Close", "", "Close");
  20. Player::OnDialogRequest(peer, store.finishDialog());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement