Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. INSTANCE DIA_NONE_50000_Tester_Exit (C_Info)
  2. {
  3. npc = NONE_50000_Tester;
  4. nr = 999;
  5. condition = DIA_NONE_50000_Tester_Exit_condition;
  6. information = DIA_NONE_50000_Tester_Exit_info;
  7. permanent = TRUE;
  8. important = FALSE;
  9. description = DIALOG_ENDE;
  10. };
  11. FUNC INT DIA_NONE_50000_Tester_Exit_condition ()
  12. {
  13. return TRUE;
  14. };
  15. FUNC VOID DIA_NONE_50000_Tester_Exit_info ()
  16. {
  17. AI_StopProcessInfos(self);
  18. };
  19.  
  20. INSTANCE DIA_NONE_50000_Tester_CAMERASTART (C_Info)
  21. {
  22. npc = NONE_50000_Tester;
  23. nr = 2;
  24. condition = DIA_NONE_50000_Tester_CAMERASTART_condition;
  25. information = DIA_NONE_50000_Tester_CAMERASTART_info;
  26. permanent = FALSE;
  27. important = FALSE;
  28. description = "Kameraflug";
  29. };
  30. FUNC INT DIA_NONE_50000_Tester_CAMERASTART_condition ()
  31. {
  32. return TRUE;
  33. };
  34. FUNC VOID DIA_NONE_50000_Tester_CAMERASTART_info ()
  35. {
  36. Wld_SendTrigger ("CAMERASTART");
  37. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement