Advertisement
X39

Untitled

X39
May 29th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. class Chapter1
  2. {
  3. // Hint title, filled by arguments from 'arguments' param
  4. displayName = "Chapter1";
  5. // Optional hint subtitle, filled by arguments from 'arguments' param
  6. displayNameShort = "SomeShort?Name";
  7. // Structured text, filled by arguments from 'arguments' param
  8. description = "description Some test %0#0 %1#1 %2#2 %3#3 %4#4 %5#5 %6#6 %7#7 %8#8 %9#9 %10#10 %11#11 %12#12";
  9. // Optional structured text, filled by arguments from 'arguments' param (first argument
  10. // is %11, see notes bellow), grey color of text
  11. tip = "tip Some test %0#0 %1#1 %2#2 %3#3 %4#4 %5#5 %6#6 %7#7 %8#8 %9#9 %10#10 %11#11 %12#12";
  12. arguments[] = {
  13. {{"getOver"}}, // Double nested array means assigned key (will be specially formatted)
  14. {"name"}, // Nested array means element (specially formatted part of text)
  15. "name player" // Simple string will be simply compiled and called
  16. // String is used as a link to localization database in case it starts by str_
  17. };
  18. // Optional image
  19. image = "\X39_MS2_Resources\logoXMS2.paa";
  20. // optional parameter for not showing of image in context hint in mission (default false))
  21. noImage = false;
  22. };
  23. class Chapter1_1
  24. {
  25. // Hint title, filled by arguments from 'arguments' param
  26. displayName = "Chapter1.1";
  27. // Optional hint subtitle, filled by arguments from 'arguments' param
  28. displayNameShort = "testesttest";
  29. // Structured text, filled by arguments from 'arguments' param
  30. description = "description";
  31. // Optional structured text, filled by arguments from 'arguments' param (first argument
  32. // is %11, see notes bellow), grey color of text
  33. tip = "tip TEST %3%6TEST%4";
  34. arguments[] = {
  35. {{"getOver"}}, // Double nested array means assigned key (will be specially formatted)
  36. {"name"}, // Nested array means element (specially formatted part of text)
  37. "name player" // Simple string will be simply compiled and called
  38. // String is used as a link to localization database in case it starts by str_
  39. };
  40. // Optional image
  41. image = "\X39_MS2_Resources\logoXMS2.paa";
  42. // optional parameter for not showing of image in context hint in mission (default false))
  43. noImage = true;
  44. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement