Advertisement
SRSbladez

Untitled

Jul 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.00 KB | None | 0 0
  1. using system;
  2. using system.net.http;
  3. using system.IO;
  4. using system.reflection;
  5. using LSPD_FirstResponse;
  6. using LSPD_FirstResponse.Mod.API;
  7. using LSPD_FirstResponse.Mod.Engine.Scripting.Entities;
  8. using LSPD_FirstResponse.Mod.Callouts
  9. using Rage.Native;
  10. using Rage;
  11.  
  12. ([CalloutInfo("Possible Theft")CalloutProbability.Medium])
  13. public static void PossiblTheft : Callout
  14. {
  15.     private Ped Witness, Suspect, PossibleSuspect;
  16.     private Blip WitnessB, SuspectB, PossibleSuspectB;
  17.     private SpawnHelper WitnessPos, SuspectPos, PossibleSuspectPos;
  18.     private ECalloutState calloutstate;
  19.     private EDialog dialog;
  20.     private readonly List<string> dialog1WithWitness = new List<string>
  21.     {
  22.         $"~b~{Settings.Settings.OfficerName}:~s~ Hello there, I'm a police officer with the ~b~{Settings.Settings.PoliceDepartment}~s~,
  23.          can you tell me what happened please. (1/3)",
  24.          "~y~Witness:~s~ Hi officer, I saw someone acting suspicious in the 711, they kept picking things up, putting them back down,
  25.          and then he picked something up and kept it, walked outside with his friend, and when down that alley way. (2/3)",
  26.          $"~b{Settings.Settings.OfficerName}:~s~ Thank you for that, I'll take a look. (3/3)",
  27.     };
  28.    
  29.     private readonly List<string> dialog2WithSuspect = new List<string>
  30.     {
  31.         $"~b~{Settings.Settings.OfficerName}:~s~ Hi there, I got a call about suspicious activity, can you please tell me what you're
  32.          doing here sir?(1/3)",
  33.          "~r~Suspect:~s~ Hi officer, nahhh we're not doing anything at aaalllll. (2/3)",
  34.         $"~b~{Settings.Settings.OfficerName}:~s~ Okay sir, I'm just gonna speak with your buddy now. (3/3)"
  35.     };
  36.    
  37.     private List<SpawnHelper> WitnessPosList = new List<string>
  38.     {
  39.          new SpawnHelper(new Vector3(324.87f, 231f, 98.04f), -123.09f)
  40.     };
  41.  
  42.     private List<SpawnHelper> SupectPosList = new List<string>
  43.     {
  44.          new SpawnHelper(new Vector3(324.87f, 231f, 98.04f), -123.09f)
  45.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement