Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. class CfgHints
  2. {
  3. class ARMAGEDDON
  4. {
  5. // Topic title (displayed only in topic listbox in Field Manual)
  6. displayName = "ArmAGeddon";
  7. class RULES
  8. {
  9. // Hint title, filled by arguments from 'arguments' param
  10. displayName = "ArmAGeddon Rules";
  11. // Optional hint subtitle, filled by arguments from 'arguments' param
  12. displayNameShort = "";
  13. // Structured text, filled by arguments from 'arguments' param
  14. description = "The Island Is sinking. Escape Altis and do it fast! CSAT forces flee as well, you can try to hijack their vehicles.";
  15. // Optional structured text, filled by arguments from 'arguments' param (first argument
  16. // is %11, see notes bellow), grey color of text
  17. tip = "For a better experience, try the Particle Effect Parameters Ultra and Armageddon in General Video Options";
  18. arguments[] = {
  19. {{"getOver"}}, // Double nested array means assigned key (will be specially formatted)
  20. {"name"}, // Nested array means element (specially formatted part of text)
  21. "name player" // Simple string will be simply compiled and called
  22. // String is used as a link to localization database in case it starts by str_
  23. };
  24. // Optional image
  25. image = "pictures\mod.paa";
  26. // optional parameter for not showing of image in context hint in mission (default false))
  27. noImage = false;
  28.  
  29. class RULES_subHint
  30. {
  31.  
  32. };
  33. };
  34. };
  35. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement