Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. procedure ShowTitleScreen;
  2. begin
  3. ClrAll;
  4. _dlist := word(@DL_title);
  5. Poke(710,0); // bgcolor
  6. Poke(712,0); // border color
  7. Writeln('Vox Regis - wczesna wersja alpha');
  8. Writeln;
  9. Writeln;
  10. Writeln('LEGENDA:');
  11. Writeln;
  12. Writeln(Char(ICON_MONEY),' - skarbiec');
  13. Writeln(Char(ICON_POPULATION),' - populacja');
  14. Writeln(Char(ICON_ARMY),' - armia');
  15. Writeln;
  16. Writeln(Char(ICON_HEALTH),' - zdrowie');
  17. Writeln(Char(ICON_HAPPINES),' - szczescie');
  18. Writeln(Char(ICON_CHURCH),' - religia');
  19. Writeln;
  20. Writeln;
  21. Writeln(getString(0));
  22. Writeln(getString(1));
  23. Writeln(getString(2));
  24. Writeln;
  25. Writeln(getString(3));
  26. Writeln(getString(4));
  27. Writeln(getString(5));
  28. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement