Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 481.39 KB | None | 0 0
  1. ; <COMPILER: v1.0.48.5>
  2.  
  3.  
  4.  
  5. #IfWinActive, GTA:SA:MP
  6. #UseHook
  7. #Persistent
  8. #SingleInstance force
  9. #HotKeyInterval 1
  10. #MaxHotkeysPerInterval 2000
  11.  
  12. UrlDownloadToVar(URL, UserAgent = "", Proxy = "", ProxyBypass = "") {
  13. pFix:=a_isunicode ? "W" : "A"
  14. hModule2 := DllCall("LoadLibrary", "Str", "wininet.dll")
  15. AccessType := Proxy != "" ? 3 : 1
  16. io := DllCall("wininet\InternetOpen" . pFix
  17. , "Str", UserAgent
  18. , "UInt", AccessType
  19. , "Str", Proxy
  20. , "Str", ProxyBypass
  21. , "UInt", 0)
  22. iou := DllCall("wininet\InternetOpenUrl" . pFix
  23. , "UInt", io
  24. , "Str", url
  25. , "Str", ""
  26. , "UInt", 0
  27. , "UInt", 0x80000000
  28. , "UInt", 0)
  29. If (ErrorLevel != 0 or iou = 0) {
  30. DllCall("FreeLibrary", "UInt", hModule2)
  31. return 0
  32. }
  33. VarSetCapacity(buffer, 10240, 0)
  34. VarSetCapacity(BytesRead, 4, 0)
  35. Loop
  36. {
  37. irf := DllCall("wininet\InternetReadFile", "UInt", iou, "UInt", &buffer, "UInt", 10240, "UInt", &BytesRead)
  38. VarSetCapacity(buffer, -1)
  39. BytesRead_ = 0
  40. Loop, 4
  41. BytesRead_ += *(&BytesRead + A_Index-1) << 8*(A_Index-1)
  42. If (irf = 1 and BytesRead_ = 0)
  43. break
  44. Else
  45. {
  46. Result .= SubStr(buffer, 1, BytesRead_ * (a_isunicode ? 2 : 1))
  47. }
  48. }
  49. DllCall("wininet\InternetCloseHandle", "UInt", iou)
  50. DllCall("wininet\InternetCloseHandle", "UInt", io)
  51. DllCall("FreeLibrary", "UInt", hModule2)
  52. return % result
  53. }
  54.  
  55. Version=0.0.1
  56. API=1.0
  57. TicketOverlay = 0
  58. Overlay = 0
  59. Menu_Overlay = 0
  60. Menu_HP = 0
  61. Menu_AP = 0
  62. switcher = 2
  63. caID = Niemand
  64. SpeedCheckStatus = 0
  65. SpeedOnOff = 0
  66. VehSpeedMax = 0
  67. LowHPsoundan = 0
  68. BKsoundan = 0
  69. fischers = 1
  70. watermode = 0
  71. swatmode = 0
  72. bkon = 0
  73. hmOn = 0
  74. streife = 0
  75. Freigabe = 1
  76. pOn = 0
  77. Partner1 = -1
  78. Partner2 = -1
  79. Partner3 = -1
  80. Fahrer = -1
  81. arrest1 = -1
  82. arrest2 = -1
  83. arrest3 = -1
  84. arrest4 = -1
  85. arrest5 = -1
  86. PoliceID := "X"
  87. MAX_CODES := 29
  88. Binds := 52
  89.  
  90.  
  91.  
  92.  
  93. SetTimer, Antispamschutz, 1000
  94. SetTimer, Waffenschein, 1000
  95. SetTimer, Flugschein, 1000
  96. SetTimer, Paintball, 1000
  97. SetTimer, TankstelleZoll, 1000
  98.  
  99. Loop, %MAX_CODES%
  100. {
  101. CodeVars_Code[A_Index] := "-1"
  102. CodeVars_Text[A_Index] := "Empty"
  103. CodeVars_Write[A_Index] := 0
  104. }
  105. Sounds = %A_ScriptDir%\Sounds
  106. Pictures = %A_ScriptDir%\Pictures
  107. Hotkeys = %A_ScriptDir%\Hotkeys.ini
  108. IfNotExist, %A_ScriptDir%\Sounds
  109. {
  110. FileCreateDir, %A_ScriptDir%\Sounds
  111. }
  112. IfNotExist, %A_ScriptDir%\Pictures
  113. {
  114. FileCreateDir, %A_ScriptDir%\Pictures\
  115. }
  116. IfNotExist,%A_ScriptDir%\Sounds\Call.mp3
  117. {
  118. URLDownloadToFile, http://ni31914_3.vweb16.nitrado.net/keybinder/Call.mp3, Call.mp3
  119. FileMove, Call.mp3, %Sounds%\Call.mp3
  120. }
  121. IfNotExist, %A_ScriptDir%\Sounds\SMS.mp3
  122. {
  123. URLDownloadToFile, http://ni31914_3.vweb16.nitrado.net/keybinder/SMS.mp3, SMS.mp3
  124. FileMove, SMS.mp3, %Sounds%\SMS.mp3
  125. }
  126. IfNotExist, %A_ScriptDir%\Sounds\LowHP.mp3
  127. {
  128. URLDownloadToFile, http://ni31914_3.vweb16.nitrado.net/keybinder/LowHP.mp3, LowHP.mp3
  129. FileMove, LowHP.mp3, %Sounds%\LowHP.mp3
  130. }
  131. IfNotExist, %A_ScriptDir%\Sounds\BK.mp3
  132. {
  133. URLDownloadToFile, http://ni31914_3.vweb16.nitrado.net/keybinder/BK.mp3, BK.mp3
  134. FileMove, BK.mp3, %Sounds%\BK.mp3
  135. }
  136. {
  137. URLDownloadToFile, http://img4.fotos-hochladen.net/uploads/fbilogom2c7gneha8.png, FBILogo.png
  138. FileMove, FBIlogo.png, %A_ScriptDir%\Pictures\FBILogo.png
  139. }
  140.  
  141. #NoEnv
  142. API_ERROR_NONE := 0
  143. API_ERROR_SNAPSHOT_FAILED := 1
  144. API_ERROR_SAMP_NOT_FOUND := 2
  145. API_ERROR_REMOTE_MEMORY_ALLOCATION_FAILED := 3
  146. API_ERROR_WRITEPROCESSMEMORY_FAILED := 4
  147. API_ERROR_GETPROCADDRESS_FAILED := 5
  148. API_ERROR_REMOTETHREAD_FAILED := 6
  149. API_ERROR_INVALID_GTA_HANDLE := 7
  150. API_ERROR_PIPE_DOESNT_RESPOND := 8
  151. API_ERROR_STRING_TOO_LONG := 9
  152. PLAYER_STATE_LEAVING_VEHICLE := 0
  153. PLAYER_STATE_NORMAL := 1
  154. PLAYER_STATE_DRIVING := 50
  155. PLAYER_STATE_DYING := 54
  156. PLAYER_STATE_DEAD := 55
  157. CALLBACK_HEAL := 0
  158. CALLBACK_ARMOR := 1
  159. CALLBACK_POSITION := 2
  160. CALLBACK_ENTEREXIT := 3
  161. CALLBACK_VEHICLE_ENTEREXIT := 4
  162. CALLBACK_VEHICLE_HEALTH := 5
  163. CALLBACK_VEHICLE_ENGINE := 6
  164. CALLBACK_VEHICLE_LOCK := 7
  165. CALLBACK_VEHICLE_SPEED := 8
  166. CALLBACK_WEAPON_CLIP := 9
  167. CALLBACK_WEAPON_TOTALCLIP := 10
  168. CALLBACK_WEAPON_SWITCH := 11
  169. CALLBACK_CHATLOG := 12
  170. PATH_API := RelToAbs(A_ScriptDir, "API.dll")
  171. hModule := DllCall("LoadLibrary", Str, PATH_API)
  172. if(hModule == -1 || hModule == 0)
  173. {
  174. }
  175. ReadMemory_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_ReadMemory")
  176. WriteMemory_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_WriteMemory")
  177. GetBasePointer_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetBasePointer")
  178. GetCommandLine_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetCommandLine")
  179. GetLastError_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetLastError")
  180. SetLastError_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_SetLastError")
  181. SendChat_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_SendChat")
  182. ShowGameText_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_ShowGameText")
  183. AddChatMessage_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_AddChatMessage")
  184. ShowDialog_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_ShowDialog")
  185. IsDialogOpen_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsDialogOpen")
  186. GetLastDialogId_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetLastDialogId")
  187. GetLastDialogType_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetLastDialogType")
  188. BlockChatInput_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_BlockChatInput")
  189. GetChatLine_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetChatLine")
  190. GetChatLineFromFile_func:= DllCall("GetProcAddress", UInt, hModule, Str, "API_GetChatLineFromFile")
  191. IsChatOpen_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsChatOpen")
  192. GetScreenSizeX_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetScreenSizeX")
  193. GetScreenSizeY_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetScreenSizeY")
  194. GetCurrentWeatherId_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetCurrentWeatherId")
  195. GetZoneName_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetZoneName")
  196. GetCityName_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetCityName")
  197. GetZoneNameByCoords_func:= DllCall("GetProcAddress", UInt, hModule, Str, "API_GetZoneNameByCoords")
  198. GetCityNameByCoords_func:= DllCall("GetProcAddress", UInt, hModule, Str, "API_GetCityNameByCoords")
  199. GetMarkerPos_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetMarkerPos")
  200. GetLastMousePosOnMenuMap_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetLastMousePosOnMenuMap")
  201. GetMapMarkerPos_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetMapMarkerPos")
  202. FindGroundZForPosition_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_FindGroundZForPosition")
  203. WorldToScreen_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_WorldToScreen")
  204. ScreenToWorld_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_ScreenToWorld")
  205. RegisterTextBind_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_RegisterTextBind")
  206. UnregisterTextBind_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_UnregisterTextBind")
  207. UnregisterAllTextBinds_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_UnregisterAllTextBinds")
  208. TextBindTimer_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_TextBindTimer")
  209. IsMenuOpen_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsMenuOpen")
  210. GetPlayerId_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerId")
  211. GetPlayerName_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerName")
  212. GetServerIp_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetServerIp")
  213. GetServerPort_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetServerPort")
  214. GetPlayerCPed_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerCPed")
  215. GetPlayerHealth_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerHealth")
  216. GetPlayerArmor_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerArmor")
  217. GetPlayerMoney_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerMoney")
  218. GetPlayerWanteds_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerWanteds")
  219. GetPlayerPosition_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerPosition")
  220. IsPlayerInRangeOfPoint_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInRangeOfPoint")
  221. IsPlayerInRangeOfPoint2D_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInRangeOfPoint2D")
  222. IsPlayerInAnyInterior_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInAnyInterior")
  223. IsPlayerFrozen_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerFrozen")
  224. GetPlayerWeaponSlot_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerWeaponSlot")
  225. GetPlayerWeaponId_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerWeaponId")
  226. GetPlayerWeaponName_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerWeaponName")
  227. GetPlayerWeaponClip_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerWeaponClip")
  228. GetPlayerWeaponTotalClip_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerWeaponTotalClip")
  229. GetPlayerWeaponState_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerWeaponState")
  230. GetPlayerState_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerState")
  231. GetVehicleId_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleId")
  232. GetVehiclePointer_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehiclePointer")
  233. GetVehicleModelId_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleModelId")
  234. GetVehicleModelName_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleModelName")
  235. GetVehicleModelNameById_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleModelNameById")
  236. GetVehicleType_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleType")
  237. GetVehicleHealth_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleHealth")
  238. GetVehicleRadioStation_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleRadioStation")
  239. GetVehicleRadioStationName_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleRadioStationName")
  240. GetVehicleFreeSeats_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleFreeSeats")
  241. GetVehicleSpeed_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleSpeed")
  242. GetVehicleFirstColor_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleFirstColor")
  243. GetVehicleSecondColor_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleSecondColor")
  244. GetVehicleColor_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleColor")
  245. GetVehicleColorRGB_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleColorRGB")
  246. GetVehicleColorARGB_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetVehicleColorARGB")
  247. IsPlayerInAnyVehicle_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInAnyVehicle")
  248. IsPlayerDriver_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerDriver")
  249. IsPlayerPassenger_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerPassenger")
  250. IsVehicleSeatUsed_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsVehicleSeatUsed")
  251. IsVehicleLocked_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsVehicleLocked")
  252. IsVehicleSirenEnabled_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsVehicleSirenEnabled")
  253. IsVehicleHornEnabled_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsVehicleHornEnabled")
  254. IsVehicleAlternateSirenEnabled_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsVehicleAlternateSirenEnabled")
  255. IsVehicleEngineEnabled_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsVehicleEngineEnabled")
  256. IsVehicleLightEnabled_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsVehicleLightEnabled")
  257. IsPlayerInCar_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInCar")
  258. IsPlayerInPlane_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInPlane")
  259. IsPlayerInBoat_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInBoat")
  260. IsPlayerInTrain_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInTrain")
  261. IsPlayerInBike_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_IsPlayerInBike")
  262. SetCallbackPointer_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_SetCallbackPointer")
  263. UnSetCallbackPointer_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_UnSetCallbackPointer")
  264. SetListenCallback_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_SetListenCallback")
  265. UnSetListenCallback_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_UnSetListenCallback")
  266. UnSetListenCallbackAll_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_UnSetListenCallbackAll")
  267. UpdateServerData_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_UpdateServerData")
  268. GetPlayerNameById_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerNameById")
  269. GetPlayerIdByName_func := DllCall("GetProcAddress", UInt, hModule, Str, "API_GetPlayerIdByName")
  270. ReadMemory(addr, size, ByRef data)
  271. {
  272. global ReadMemory_func
  273. VarSetCapacity(data,size)
  274. res := DllCall(ReadMemory_func, UInt, addr, UInt, size, StrP, data)
  275. return res
  276. }
  277. WriteMemory(addr, size, data)
  278. {
  279. global WriteMemory_func
  280. res := DllCall(WriteMemory_func, UInt, addr, UInt, size, Str, data)
  281. return res
  282. }
  283. GetBasePointer(dll)
  284. {
  285. global GetBasePointer_func
  286. res :=DllCall(GetBasePointer_func, Str, dll)
  287. return res
  288. }
  289. GetCommandLine(ByRef line)
  290. {
  291. global GetCommandLine_func
  292. VarSetCapacity(line,512,0)
  293. res := DllCall(GetCommandLine_func, StrP, line)
  294. return res
  295. }
  296. GetLastError()
  297. {
  298. global GetLastError_func
  299. res:=DllCall(GetLastError_func)
  300. return res
  301. }
  302. SetLastError(error)
  303. {
  304. global SetLastError_func
  305. res := DllCall(SetLastError_func, Int, error)
  306. return res
  307. }
  308. SendChat(msg)
  309. {
  310. global SendChat_func
  311. res := DllCall(SendChat_func, Str, msg)
  312. return res
  313. }
  314. ShowGameText(str_Text, int_Time, int_Style)
  315. {
  316. global ShowGameText_func
  317. res := DllCall(ShowGameText_func,Str , str_Text, Int, int_Time, Int, int_Style)
  318. return res
  319. }
  320. AddChatMessage(int_Color, str_Text)
  321. {
  322. global AddChatMessage_func
  323. res := DllCall(AddChatMessage_func, Int, int_Color, Str, str_Text)
  324. return res
  325. }
  326. ShowDialog(style, caption, text, button)
  327. {
  328. global ShowDialog_func
  329. res := DllCall(ShowDialog_func, Int, style, Str, caption, Str, text, Str, button)
  330. return res
  331. }
  332. IsDialogOpen()
  333. {
  334. global IsDialogOpen_func
  335. res := DllCall(IsDialogOpen_func)
  336. return res
  337. }
  338. GetLastDialogId()
  339. {
  340. global GetLastDialogId_func
  341. res := DllCall(GetLastDialogId_func)
  342. return res
  343. }
  344. GetLastDialogType()
  345. {
  346. global GetLastDialogType_func
  347. res := DllCall(GetLastDialogType_func)
  348. return res
  349. }
  350. BlockChatInput(block)
  351. {
  352. global BlockChatInput_func
  353. res := DllCall(BlockChatInput_func,UChar,block)
  354. return res
  355. }
  356. GetChatLine(id, ByRef line)
  357. {
  358. global GetChatLine_func
  359. VarSetCapacity(line,256,0)
  360. res := DllCall(GetChatLine_func,Int,id,StrP,line)
  361. return res
  362. }
  363. GetChatLineFromFile(id, ByRef line)
  364. {
  365. global GetChatLineFromFile_func
  366. VarSetCapacity(line,256,0)
  367. res := DllCall(GetChatLineFromFile_func,Int,id,StrP,line)
  368. return res
  369. }
  370. IsChatOpen()
  371. {
  372. global IsChatOpen_func
  373. res := DllCall(IsChatOpen_func)
  374. return res
  375. }
  376. GetScreenSizeX()
  377. {
  378. global GetScreenSizeX_func
  379. res := DllCall(GetScreenSizeX_func)
  380. return res
  381. }
  382. GetScreenSizeY()
  383. {
  384. global GetScreenSizeY_func
  385. res := DllCall(GetScreenSizeY_func)
  386. return res
  387. }
  388. GetCurrentWeatherId()
  389. {
  390. global GetCurrentWeatherId_func
  391. res := DllCall(GetCurrentWeatherId_func)
  392. return res
  393. }
  394. GetZoneName( ByRef str_ZoneName)
  395. {
  396. global GetZoneName_func
  397. VarSetCapacity(str_ZoneName, 32)
  398. res := DllCall(GetZoneName_func, StrP, str_ZoneName)
  399. return res
  400. }
  401. GetCityName( ByRef str_CityName)
  402. {
  403. global GetCityName_func
  404. VarSetCapacity(str_CityName, 32)
  405. res := DllCall(GetCityName_func, StrP, str_CityName)
  406. return res
  407. }
  408. GetZoneNameByCoords(x, y, ByRef str_ZoneName)
  409. {
  410. global GetZoneNameByCoords_func
  411. VarSetCapacity(str_ZoneName, 32)
  412. res := DllCall(GetZoneNameByCoords_func, Float, x, Float, y, StrP, str_ZoneName)
  413. return res
  414. }
  415. GetCityNameByCoords(x, y, ByRef str_CityName)
  416. {
  417. global GetCityNameByCoords_func
  418. VarSetCapacity(str_CityName, 32)
  419. res := DllCall(GetCityNameByCoords_func, Float, x, Float, y, StrP, str_CityName)
  420. return res
  421. }
  422. GetMarkerPos(ByRef x, ByRef y, ByRef z)
  423. {
  424. global GetMarkerPos_func
  425. res := DllCall(GetMarkerPos_func, FloatP, x, FloatP, y, FloatP, z)
  426. return res
  427. }
  428. GetLastMousePosOnMenuMap(ByRef x, ByRef y)
  429. {
  430. global GetLastMousePosOnMenuMap_func
  431. res := DllCall(GetLastMousePosOnMenuMap_func, FloatP, x, FloatP, y)
  432. return res
  433. }
  434. GetMapMarkerPos(ByRef x, ByRef y)
  435. {
  436. global GetMapMarkerPos_func
  437. res := DllCall(GetMapMarkerPos_func, FloatP, x, FloatP, y)
  438. return res
  439. }
  440. FindGroundZForPosition(x,y)
  441. {
  442. global FindGroundZForPosition_func
  443. res := DllCall(FindGroundZForPosition_func, Float, x, Float, y, "Cdecl float")
  444. return res
  445. }
  446. WorldToScreen(worldX, worldY, worldZ, ByRef screenX, ByRef screenY)
  447. {
  448. global WorldToScreen_func
  449. res := DllCall(WorldToScreen_func, Float, worldX, Float, worldY, Float, worldZ, FloatP, screenX, FloatP, screenY)
  450. return res
  451. }
  452. ScreenToWorld(screenX, screenY, ByRef worldX, ByRef worldY, ByRef worldZ)
  453. {
  454. global ScreenToWorld_func
  455. res := DllCall(ScreenToWorld_func, Float, screenX, Float, screenY, FloatP, worldX, FloatP, worldY, FloatP, worldZ)
  456. return res
  457. }
  458. RegisterTextBind(str_TextBind, float_PosX, float_PosY, float_PosZ, float_Radius, int_Delay, int_Loop, int_GroupId, int_isChild, int_Timeout)
  459. {
  460. global RegisterTextBind_func
  461. res := DllCall(RegisterTextBind_func, Str, str_TextBind, Float, float_PosX, Float, float_PosY, Float, float_PosZ, Float, float_Radius, Int, int_Delay, Int, int_Loop, Int, int_GroupId, Int, int_isChild, Int, int_Timeout)
  462. return res
  463. }
  464. UnregisterTextBind(int_TextBindId)
  465. {
  466. global UnregisterTextBind_func
  467. res := DllCall(UnregisterTextBind_func, Int, int_TextBindId)
  468. return res
  469. }
  470. UnregisterAllTextBinds()
  471. {
  472. global UnregisterAllTextBinds_func
  473. res := DllCall(UnregisterAllTextBinds_func)
  474. return res
  475. }
  476. TextBindTimer(int_TextBindSleep)
  477. {
  478. global TextBindTimer_func
  479. res := DllCall(TextBindTimer_func, Int, int_TextBindSleep)
  480. return res
  481. }
  482. IsMenuOpen()
  483. {
  484. global IsMenuOpen_func
  485. res := DllCall(IsMenuOpen_func)
  486. return res
  487. }
  488. GetPlayerId()
  489. {
  490. global GetPlayerId_func
  491. res := DllCall(GetPlayerId_func)
  492. return res
  493. }
  494. GetPlayerName(ByRef szName)
  495. {
  496. global GetPlayerName_func
  497. VarSetCapacity(szName,25)
  498. res := DllCall(GetPlayerName_func, StrP, szName)
  499. return res
  500. }
  501. GetServerIp(ByRef szHost)
  502. {
  503. global GetServerIp_func
  504. VarSetCapacity(szHost, 30)
  505. res := DllCall(GetServerIp_func, StrP, szHost)
  506. return res
  507. }
  508. GetServerPort()
  509. {
  510. global GetServerPort_func
  511. res := DllCall(GetServerPort_func)
  512. return res
  513. }
  514. GetPlayerCPed()
  515. {
  516. global GetPlayerCPed_func
  517. res :=DllCall(GetPlayerCPed_func)
  518. return res
  519. }
  520. GetPlayerHealth()
  521. {
  522. global GetPlayerHealth_func
  523. res := DllCall(GetPlayerHealth_func)
  524. return res
  525. }
  526. GetPlayerArmor()
  527. {
  528. global GetPlayerArmor_func
  529. res := DllCall(GetPlayerArmor_func)
  530. return res
  531. }
  532. GetPlayerMoney()
  533. {
  534. global GetPlayerMoney_func
  535. res := DllCall(GetPlayerMoney_func)
  536. return res
  537. }
  538. GetPlayerWanteds()
  539. {
  540. global GetPlayerWanteds_func
  541. res := DllCall(GetPlayerWanteds_func)
  542. return res
  543. }
  544. GetPlayerPosition(ByRef flo_posX, ByRef flo_posY, ByRef flo_posZ, ByRef flo_Rotation)
  545. {
  546. global GetPlayerPosition_func
  547. res := DllCall(GetPlayerPosition_func, FloatP, flo_posX, FloatP, flo_posY, FloatP, flo_posZ, FloatP, flo_Rotation)
  548. return res
  549. }
  550. IsPlayerInRangeOfPoint(flo_posX, flo_posY, flo_posZ, flo_posRadius)
  551. {
  552. global IsPlayerInRangeOfPoint_func
  553. res := DllCall(IsPlayerInRangeOfPoint_func, Float, flo_posX, Float, flo_posY, Float, flo_posZ, Float, flo_posRadius)
  554. return res
  555. }
  556. IsPlayerInRangeOfPoint2D(flo_posX, flo_posY, flo_posRadius)
  557. {
  558. global IsPlayerInRangeOfPoint2D_func
  559. res := DllCall(IsPlayerInRangeOfPoint2D_func, Float, flo_posX, Float, flo_posY, Float, flo_posRadius)
  560. return res
  561. }
  562. IsPlayerInAnyInterior()
  563. {
  564. global IsPlayerInAnyInterior_func
  565. res := DllCall(IsPlayerInAnyInterior_func)
  566. return res
  567. }
  568. IsPlayerFrozen()
  569. {
  570. global IsPlayerFrozen_func
  571. res := DllCall(IsPlayerFrozen_func)
  572. return res
  573. }
  574. GetPlayerWeaponSlot()
  575. {
  576. global GetPlayerWeaponSlot_func
  577. res := DllCall(GetPlayerWeaponSlot_func)
  578. return res
  579. }
  580. GetPlayerWeaponId(int_WeaponSlot)
  581. {
  582. global GetPlayerWeaponId_func
  583. res := DllCall(GetPlayerWeaponId_func, Int, int_WeaponSlot)
  584. return res
  585. }
  586. GetPlayerWeaponName(int_WeaponSlot, ByRef str_WeapName)
  587. {
  588. global GetPlayerWeaponName_func
  589. VarSetCapacity(str_WeapName, 32)
  590. res := DllCall(GetPlayerWeaponName_func, Int, int_WeaponSlot, StrP, str_WeapName)
  591. return res
  592. }
  593. GetPlayerWeaponClip(int_WeaponSlot)
  594. {
  595. global GetPlayerWeaponClip_func
  596. res := DllCall(GetPlayerWeaponClip_func, Int, int_WeaponSlot)
  597. return res
  598. }
  599. GetPlayerWeaponTotalClip(int_WeaponSlot)
  600. {
  601. global GetPlayerWeaponTotalClip_func
  602. res := DllCall(GetPlayerWeaponTotalClip_func, Int, int_WeaponSlot)
  603. return res
  604. }
  605. GetPlayerWeaponState()
  606. {
  607. global GetPlayerWeaponState_func
  608. res := DllCall(GetPlayerWeaponState_func)
  609. return res
  610. }
  611. GetPlayerState()
  612. {
  613. global GetPlayerState_func
  614. res := DllCall(GetPlayerState_func)
  615. return res
  616. }
  617. GetVehicleId()
  618. {
  619. global GetVehicleId_func
  620. Result := DllCall(GetVehicleId_func)
  621. return Result
  622. }
  623. GetVehiclePointer()
  624. {
  625. global GetVehiclePointer_func
  626. res := DllCall(GetVehiclePointer_func)
  627. return res
  628. }
  629. GetVehicleModelId()
  630. {
  631. global GetVehicleModelId_func
  632. res := DllCall(GetVehicleModelId_func)
  633. return res
  634. }
  635. GetVehicleModelName(ByRef str_VehicleName)
  636. {
  637. global GetVehicleModelName_func
  638. VarSetCapacity(str_VehicleName, 32)
  639. res := DllCall(GetVehicleModelName_func, StrP, str_VehicleName)
  640. return res
  641. }
  642. GetVehicleModelNameById(int_VehicleId, ByRef str_VehicleName)
  643. {
  644. global GetVehicleModelNameById_func
  645. VarSetCapacity(str_VehicleName, 32)
  646. res := DllCall(GetVehicleModelNameById_func, Int, int_VehicleId, StrP, str_VehicleName)
  647. return res
  648. }
  649. GetVehicleType()
  650. {
  651. global GetVehicleType_func
  652. res := DllCall(GetVehicleType_func)
  653. return res
  654. }
  655. GetVehicleHealth()
  656. {
  657. global GetVehicleHealth_func
  658. res := DllCall(GetVehicleHealth_func)
  659. return res
  660. }
  661. GetVehicleRadioStation()
  662. {
  663. global GetVehicleRadioStation_func
  664. res := DllCall(GetVehicleRadioStation_func)
  665. return res
  666. }
  667. GetVehicleRadioStationName(ByRef str_RadioName)
  668. {
  669. global GetVehicleRadioStationName_func
  670. VarSetCapacity(str_RadioName, 32)
  671. res := DllCall(GetVehicleRadioStationName_func, StrP, str_RadioName)
  672. return res
  673. }
  674. GetVehicleFreeSeats(ByRef int_SeatFL, ByRef int_SeatFR, ByRef int_SeatBL, ByRef int_SeatBR)
  675. {
  676. global GetVehicleFreeSeats_func
  677. res := DllCall(GetVehicleFreeSeats_func, IntP, int_SeatFL, IntP, int_SeatFR, IntP, int_SeatBL, IntP, int_SeatBR)
  678. return res
  679. }
  680. GetVehicleSpeed(float_SpeedMult)
  681. {
  682. global GetVehicleSpeed_func
  683. res := DllCall(GetVehicleSpeed_func, Float, float_SpeedMult)
  684. return res
  685. }
  686. GetVehicleFirstColor()
  687. {
  688. global GetVehicleFirstColor_func
  689. res := DllCall(GetVehicleFirstColor_func)
  690. return res
  691. }
  692. GetVehicleSecondColor()
  693. {
  694. global GetVehicleSecondColor_func
  695. res := DllCall(GetVehicleSecondColor_func)
  696. return res
  697. }
  698. GetVehicleColor(ByRef int_ColorFirst, ByRef int_ColorSecond)
  699. {
  700. global GetVehicleColor_func
  701. res := DllCall(GetVehicleColor_func, IntP, int_ColorFirst, IntP, int_ColorSecond)
  702. return res
  703. }
  704. GetVehicleColorRGB(int_Color, ByRef uint_ColorRGB)
  705. {
  706. global GetVehicleColorRGB_func
  707. res := DllCall(GetVehicleColorRGB_func, Int, int_Color, UIntP, uint_ColorRGB)
  708. return res
  709. }
  710. GetVehicleColorARGB(int_Color, ByRef uint_ColorARGB)
  711. {
  712. global GetVehicleColorARGB_func
  713. res := DllCall(GetVehicleColorARGB_func, Int, int_Color, UIntP, uint_ColorARGB)
  714. return res
  715. }
  716. IsPlayerInAnyVehicle()
  717. {
  718. global IsPlayerInAnyVehicle_func
  719. res := DllCall(IsPlayerInAnyVehicle_func)
  720. return res
  721. }
  722. IsPlayerDriver()
  723. {
  724. global IsPlayerDriver_func
  725. res := DllCall(IsPlayerDriver_func)
  726. return res
  727. }
  728. IsPlayerPassenger()
  729. {
  730. global IsPlayerPassenger_func
  731. res := DllCall(IsPlayerPassenger_func)
  732. return res
  733. }
  734. IsVehicleSeatUsed(int_SeatId)
  735. {
  736. global IsVehicleSeatUsed_func
  737. res := DllCall(IsVehicleSeatUsed_func, int, int_SeatId)
  738. return res
  739. }
  740. IsVehicleLocked()
  741. {
  742. global IsVehicleLocked_func
  743. res := DllCall(IsVehicleLocked_func)
  744. return res
  745. }
  746. IsVehicleSirenEnabled()
  747. {
  748. global IsVehicleSirenEnabled_func
  749. res := DllCall(IsVehicleSirenEnabled_func)
  750. return res
  751. }
  752. IsVehicleHornEnabled()
  753. {
  754. global IsVehicleHornEnabled_func
  755. res := DllCall(IsVehicleHornEnabled_func)
  756. return res
  757. }
  758. IsVehicleAlternateSirenEnabled()
  759. {
  760. global IsVehicleAlternateSirenEnabled_func
  761. res := DllCall(IsVehicleAlternateSirenEnabled_func)
  762. return res
  763. }
  764. IsVehicleEngineEnabled()
  765. {
  766. global IsVehicleEngineEnabled_func
  767. res := DllCall(IsVehicleEngineEnabled_func)
  768. return res
  769. }
  770. IsVehicleLightEnabled()
  771. {
  772. global IsVehicleLightEnabled_func
  773. res := DllCall(IsVehicleLightEnabled_func)
  774. return res
  775. }
  776. IsPlayerInCar()
  777. {
  778. global IsPlayerInCar_func
  779. res := DllCall(IsPlayerInCar_func)
  780. return res
  781. }
  782. IsPlayerInPlane()
  783. {
  784. global IsPlayerInPlane_func
  785. res := DllCall(IsPlayerInPlane_func)
  786. return res
  787. }
  788. IsPlayerInBoat()
  789. {
  790. global IsPlayerInBoat_func
  791. res := DllCall(IsPlayerInBoat_func)
  792. return res
  793. }
  794. IsPlayerInTrain()
  795. {
  796. global IsPlayerInTrain_func
  797. res := DllCall(IsPlayerInTrain_func)
  798. return res
  799. }
  800. IsPlayerInBike()
  801. {
  802. global IsPlayerInBike_func
  803. res := DllCall(IsPlayerInBike_func)
  804. return res
  805. }
  806. SetListenCallback(int_Id)
  807. {
  808. global SetListenCallback_func
  809. res := DllCall(SetListenCallback_func, Int, int_Id)
  810. return res
  811. }
  812. UnSetCallbackPointer()
  813. {
  814. global UnSetCallbackPointer_func
  815. res := DllCall(UnSetCallbackPointer_func)
  816. return res
  817. }
  818. SetCallbackPointer(int_Id)
  819. {
  820. global SetCallbackPointer_func
  821. res := DllCall(SetCallbackPointer_func, Int, int_Id)
  822. return res
  823. }
  824. UnSetListenCallback(int_Id)
  825. {
  826. global UnSetListenCallback_func
  827. res := DllCall(UnSetListenCallback_func, Int, int_Id)
  828. return res
  829. }
  830. UnSetListenCallbackAll()
  831. {
  832. global UnSetListenCallbackAll_func
  833. res := DllCall(UnSetListenCallbackAll_func)
  834. return res
  835. }
  836. GetCallbackHealParams(ptr_HealStruct, ByRef iOldHeal, ByRef iNewHeal)
  837. {
  838. ioldHeal := NumGet(ptr_HealStruct+0, "int")
  839. inewHeal := NumGet(ptr_HealStruct+4, "int")
  840. }
  841. GetCallbackArmorParams(ptr_ArmorStruct, ByRef iOldArmor, ByRef iNewArmor)
  842. {
  843. ioldArmor := NumGet(ptr_ArmorStruct+0, "int")
  844. inewArmor := NumGet(ptr_ArmorStruct+4, "int")
  845. }
  846. GetCallbackPositionParams(ptr_PositionStruct, ByRef fOldPosX, ByRef fOldPosY, ByRef fOldPosZ, ByRef fOldPosR, ByRef fNewPosX, ByRef fNewPosY, ByRef fNewPosZ, ByRef fNewPosR)
  847. {
  848. fOldPosX := NumGet(ptr_PositionStruct+0, "float")
  849. fOldPosY := NumGet(ptr_PositionStruct+4, "float")
  850. fOldPosZ := NumGet(ptr_PositionStruct+8, "float")
  851. fOldPosR := NumGet(ptr_PositionStruct+12, "float")
  852. fNewPosX := NumGet(ptr_PositionStruct+16, "float")
  853. fNewPosY := NumGet(ptr_PositionStruct+20, "float")
  854. fNewPosZ := NumGet(ptr_PositionStruct+24, "float")
  855. fNewPosR := NumGet(ptr_PositionStruct+28, "float")
  856. }
  857. GetCallbackEnterExitParams(ptr_EnterExitStruct, ByRef iOldInteriorState, ByRef iNewInteriorState)
  858. {
  859. iOldInteriorState := NumGet(ptr_EnterExitStruct+0, "int")
  860. iNewInteriorState := NumGet(ptr_EnterExitStruct+4, "int")
  861. }
  862. GetCallbackVehicleEnterExitParams(ptr_VehicleEnterExitStruct, ByRef iOldVehicleEnterExit, ByRef iNewVehicleEnterExit)
  863. {
  864. iOldVehicleEnterExit := NumGet(ptr_VehicleEnterExitStruct+0, "int")
  865. iNewVehicleEnterExit := NumGet(ptr_VehicleEnterExitStruct+4, "int")
  866. }
  867. GetCallbackVehicleHealthParams(ptr_VehicleHealthStruct, ByRef iOldVehicleHealth, ByRef iNewVehicleHealth)
  868. {
  869. iOldVehicleHealth := NumGet(ptr_VehicleHealthStruct+0, "int")
  870. iNewVehicleHealth := NumGet(ptr_VehicleHealthStruct+4, "int")
  871. }
  872. GetCallbackVehicleEngineParams(ptr_VehicleEngineStruct, ByRef iOldVehicleEngine, ByRef iNewVehicleEngine)
  873. {
  874. iOldVehicleEngine := NumGet(ptr_VehicleEngineStruct+0, "int")
  875. iNewVehicleEngine := NumGet(ptr_VehicleEngineStruct+4, "int")
  876. }
  877. GetCallbackVehicleLockParams(ptr_VehicleLockStruct, ByRef iOldVehicleLock, ByRef iNewVehicleLock)
  878. {
  879. iOldVehicleLock := NumGet(ptr_VehicleLockStruct+0, "int")
  880. iNewVehicleLock := NumGet(ptr_VehicleLockStruct+4, "int")
  881. }
  882. GetCallbackVehicleSpeedParams(ptr_VehicleSpeedStruct, ByRef iOldVehicleSpeed, ByRef iNewVehicleSpeed)
  883. {
  884. iOldVehicleSpeed := NumGet(ptr_VehicleSpeedStruct+0, "int")
  885. iNewVehicleSpeed := NumGet(ptr_VehicleSpeedStruct+4, "int")
  886. }
  887. GetCallbackWeaponSwitchParams(ptr_WeaponSwitchStruct, ByRef iOldWeaponId, ByRef iNewWeaponId)
  888. {
  889. iOldWeaponId := NumGet(ptr_WeaponSwitchStruct+0, "int")
  890. iNewWeaponId := NumGet(ptr_WeaponSwitchStruct+4, "int")
  891. }
  892. GetCallbackWeaponClipParams(ptr_WeaponClipStruct, ByRef iOldWeaponClip, ByRef iNewWeaponClip)
  893. {
  894. iOldWeaponClip := NumGet(ptr_WeaponClipStruct+0, "int")
  895. iNewWeaponClip := NumGet(ptr_WeaponClipStruct+4, "int")
  896. }
  897. GetCallbackWeaponTotalClipParams(ptr_WeaponTotalClipStruct, ByRef iOldWeaponTotalClip, ByRef iNewWeaponTotalClip)
  898. {
  899. iOldWeaponTotalClip := NumGet(ptr_WeaponTotalClipStruct+0, "int")
  900. iNewWeaponTotalClip := NumGet(ptr_WeaponTotalClipStruct+4, "int")
  901. }
  902. UpdateServerData()
  903. {
  904. global UpdateServerData_func
  905. res := DllCall(UpdateServerData_func)
  906. return res
  907. }
  908. GetPlayerNameById(id,ByRef name)
  909. {
  910. VarSetCapacity(name,24,0)
  911. global GetPlayerNameById_func
  912. res := DllCall(GetPlayerNameById_func,UShort,id,StrP,name)
  913. return res
  914. }
  915. GetPlayerIdByName(name)
  916. {
  917. global GetPlayerIdByName_func
  918. res := DllCall(GetPlayerIdByName_func,Str,name)
  919. return res
  920. }
  921. DecimalToHex(Var){
  922. SetFormat, IntegerFast, hex
  923. Dec2Hex += Var
  924. Dec2Hex .= ""
  925. SetFormat, IntegerFast, d
  926. StringTrimLeft, Dec2Hex, Dec2Hex, 2
  927. StringUpper, Dec2Hex, Dec2Hex
  928. sDec2Hex .= Dec2Hex
  929. return sDec2Hex
  930. }
  931. RelToAbs(root, dir, s = "\") {
  932. pr := SubStr(root, 1, len := InStr(root, s, "", InStr(root, s . s) + 2) - 1)
  933. , root := SubStr(root, len + 1), sk := 0
  934. If InStr(root, s, "", 0) = StrLen(root)
  935. StringTrimRight, root, root, 1
  936. If InStr(dir, s, "", 0) = StrLen(dir)
  937. StringTrimRight, dir, dir, 1
  938. Loop, Parse, dir, %s%
  939. {
  940. If A_LoopField = ..
  941. StringLeft, root, root, InStr(root, s, "", 0) - 1
  942. Else If A_LoopField =
  943. root =
  944. Else If A_LoopField != .
  945. Continue
  946. StringReplace, dir, dir, %A_LoopField%%s%
  947. }
  948. Return, pr . root . s . dir
  949. }
  950.  
  951. TextSetShown_func := DllCall("GetProcAddress", UInt, h2Module, Str, "TextSetShown")
  952. TextSetColor_func := DllCall("GetProcAddress", UInt, h2Module, Str, "TextSetColor")
  953. TextSetPos_func := DllCall("GetProcAddress", UInt, h2Module, Str, "TextSetPos")
  954. TextSetString_func := DllCall("GetProcAddress", UInt, h2Module, Str, "TextSetString")
  955. TextUpdate_func := DllCall("GetProcAddress", UInt, h2Module, Str, "TextUpdate")
  956. BoxCreate_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxCreate")
  957. BoxDestroy_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxDestroy")
  958. BoxSetShown_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxSetShown")
  959. BoxSetBorder_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxSetBorder")
  960. BoxSetBorderColor_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxSetBorderColor")
  961. BoxSetColor_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxSetColor")
  962. BoxSetHeight_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxSetHeight")
  963. BoxSetPos_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxSetPos")
  964. BoxSetWidth_func := DllCall("GetProcAddress", UInt, h2Module, Str, "BoxSetWidth")
  965. LineCreate_func := DllCall("GetProcAddress", UInt, h2Module, Str, "LineCreate")
  966. LineDestroy_func := DllCall("GetProcAddress", UInt, h2Module, Str, "LineDestroy")
  967. LineSetShown_func := DllCall("GetProcAddress", UInt, h2Module, Str, "LineSetShown")
  968. LineSetColor_func := DllCall("GetProcAddress", UInt, h2Module, Str, "LineSetColor")
  969. LineSetWidth_func := DllCall("GetProcAddress", UInt, h2Module, Str, "LineSetWidth")
  970. LineSetPos_func := DllCall("GetProcAddress", UInt, h2Module, Str, "LineSetPos")
  971. ImageCreate_func := DllCall("GetProcAddress", UInt, h2Module, Str, "ImageCreate")
  972. ImageDestroy_func := DllCall("GetProcAddress", UInt, h2Module, Str, "ImageDestroy")
  973. ImageSetShown_func := DllCall("GetProcAddress", UInt, h2Module, Str, "ImageSetShown")
  974. ImageSetAlign_func := DllCall("GetProcAddress", UInt, h2Module, Str, "ImageSetAlign")
  975. ImageSetPos_func := DllCall("GetProcAddress", UInt, h2Module, Str, "ImageSetPos")
  976. ImageSetRotation_func := DllCall("GetProcAddress", UInt, h2Module, Str, "ImageSetRotation")
  977. DestroyAllVisual_func := DllCall("GetProcAddress", UInt, h2Module, Str, "DestroyAllVisual")
  978. ShowAllVisual_func := DllCall("GetProcAddress", UInt, h2Module, Str, "ShowAllVisual")
  979. HideAllVisual_func := DllCall("GetProcAddress", UInt, h2Module, Str, "HideAllVisual")
  980. GetFrameRate_func := DllCall("GetProcAddress", UInt, h2Module, Str, "GetFrameRate")
  981. GetScreenSpecs_func := DllCall("GetProcAddress", UInt, h2Module, Str, "GetScreenSpecs")
  982. Init()
  983. {
  984. global Init_func
  985. res := DllCall(Init_func)
  986. return res
  987. }
  988. SetParam(str_Name, str_Value)
  989. {
  990. global SetParam_func
  991. res := DllCall(SetParam_func, Str, str_Name, Str, str_Value)
  992. return res
  993. }
  994. TextCreate(Font, fontsize, bold, italic, x, y, color, text, shadow, show)
  995. {
  996. global TextCreate_func
  997. res := DllCall(TextCreate_func,Str,Font,Int,fontsize,UChar,bold,UChar,italic,Int,x,Int,y,UInt,color,Str,text,UChar,shadow,UChar,show)
  998. return res
  999. }
  1000. TextDestroy(id)
  1001. {
  1002. global TextDestroy_func
  1003. res := DllCall(TextDestroy_func,Int,id)
  1004. return res
  1005. }
  1006. TextSetShadow(id, shadow)
  1007. {
  1008. global TextSetShadow_func
  1009. res := DllCall(TextSetShadow_func,Int,id,UChar,shadow)
  1010. return res
  1011. }
  1012. TextSetShown(id, show)
  1013. {
  1014. global TextSetShown_func
  1015. res := DllCall(TextSetShown_func,Int,id,UChar,show)
  1016. return res
  1017. }
  1018. TextSetColor(id,color)
  1019. {
  1020. global TextSetColor_func
  1021. res := DllCall(TextSetColor_func,Int,id,UInt,color)
  1022. return res
  1023. }
  1024. TextSetPos(id,x,y)
  1025. {
  1026. global TextSetPos_func
  1027. res := DllCall(TextSetPos_func,Int,id,Int,x,Int,y)
  1028. return res
  1029. }
  1030. TextSetString(id,Text)
  1031. {
  1032. global TextSetString_func
  1033. res := DllCall(TextSetString_func,Int,id,Str,Text)
  1034. return res
  1035. }
  1036. TextUpdate(id,Font,Fontsize,bold,italic)
  1037. {
  1038. global TextUpdate_func
  1039. res := DllCall(TextUpdate_func,Int,id,Str,Font,int,Fontsize,UChar,bold,UChar,italic)
  1040. return res
  1041. }
  1042. BoxCreate(x,y,width,height,Color,show)
  1043. {
  1044. global BoxCreate_func
  1045. res := DllCall(BoxCreate_func,Int,x,Int,y,Int,width,Int,height,UInt,Color,UChar,show)
  1046. return res
  1047. }
  1048. BoxDestroy(id)
  1049. {
  1050. global BoxDestroy_func
  1051. res := DllCall(BoxDestroy_func,Int,id)
  1052. return res
  1053. }
  1054. BoxSetShown(id,Show)
  1055. {
  1056. global BoxSetShown_func
  1057. res := DllCall(BoxSetShown_func,Int,id,UChar,Show)
  1058. return res
  1059. }
  1060. BoxSetBorder(id,height,Show)
  1061. {
  1062. global BoxSetBorder_func
  1063. res := DllCall(BoxSetBorder_func,Int,id,Int,height,Int,Show)
  1064. return res
  1065. }
  1066. BoxSetBorderColor(id,Color)
  1067. {
  1068. global BoxSetBorderColor_func
  1069. res := DllCall(BoxSetBorderColor_func,Int,id,UInt,Color)
  1070. return res
  1071. }
  1072. BoxSetColor(id,Color)
  1073. {
  1074. global BoxSetColor_func
  1075. res := DllCall(BoxSetColor_func,Int,id,UInt,Color)
  1076. return res
  1077. }
  1078. BoxSetHeight(id,height)
  1079. {
  1080. global BoxSetHeight_func
  1081. res := DllCall(BoxSetHeight_func,Int,id,Int,height)
  1082. return res
  1083. }
  1084. BoxSetPos(id,x,y)
  1085. {
  1086. global BoxSetPos_func
  1087. res := DllCall(BoxSetPos_func,Int,id,Int,x,Int,y)
  1088. return res
  1089. }
  1090. BoxSetWidth(id,width)
  1091. {
  1092. global BoxSetWidth_func
  1093. res := DllCall(BoxSetWidth_func,Int,id,Int,width)
  1094. return res
  1095. }
  1096. LineCreate(x1,y1,x2,y2,width,color,show)
  1097. {
  1098. global LineCreate_func
  1099. res := DllCall(LineCreate_func,Int,x1,Int,y1,Int,x2,Int,y2,Int,Width,UInt,color,UChar,show)
  1100. return res
  1101. }
  1102. LineDestroy(id)
  1103. {
  1104. global LineDestroy_func
  1105. res := DllCall(LineDestroy_func,Int,id)
  1106. return res
  1107. }
  1108. LineSetShown(id,show)
  1109. {
  1110. global LineSetShown_func
  1111. res := DllCall(LineSetShown_func,Int,id,UChar,show)
  1112. return res
  1113. }
  1114. LineSetColor(id,color)
  1115. {
  1116. global LineSetColor_func
  1117. res := DllCall(LineSetColor_func,Int,id,UInt,color)
  1118. return res
  1119. }
  1120. LineSetWidth(id, width)
  1121. {
  1122. global LineSetWidth_func
  1123. res := DllCall(LineSetWidth_func,Int,id,Int,width)
  1124. return res
  1125. }
  1126. LineSetPos(id,x1,y1,x2,y2)
  1127. {
  1128. global LineSetPos_func
  1129. res := DllCall(LineSetPos_func,Int,id,Int,x1,Int,y1,Int,x2,Int,y2)
  1130. return res
  1131. }
  1132. ImageCreate(path, x, y, rotation, align, show)
  1133. {
  1134. global ImageCreate_func
  1135. res := DllCall(ImageCreate_func, Str, path, Int, x, Int, y, Int, rotation, Int, align, UChar, show)
  1136. return res
  1137. }
  1138. ImageDestroy(id)
  1139. {
  1140. global ImageDestroy_func
  1141. res := DllCall(ImageDestroy_func,Int,id)
  1142. return res
  1143. }
  1144. ImageSetShown(id,show)
  1145. {
  1146. global ImageSetShown_func
  1147. res := DllCall(ImageSetShown_func,Int,id,UChar,show)
  1148. return res
  1149. }
  1150. ImageSetAlign(id,align)
  1151. {
  1152. global ImageSetAlign_func
  1153. res := DllCall(ImageSetAlign_func,Int,id,Int,align)
  1154. return res
  1155. }
  1156. ImageSetPos(id, x, y)
  1157. {
  1158. global ImageSetPos_func
  1159. res := DllCall(ImageSetPos_func,Int,id,Int,x, Int, y)
  1160. return res
  1161. }
  1162. ImageSetRotation(id, rotation)
  1163. {
  1164. global ImageSetRotation_func
  1165. res := DllCall(ImageSetRotation_func,Int,id,Int, rotation)
  1166. return res
  1167. }
  1168. DestroyAllVisual()
  1169. {
  1170. global DestroyAllVisual_func
  1171. res := DllCall(DestroyAllVisual_func)
  1172. return res
  1173. }
  1174. ShowAllVisual()
  1175. {
  1176. global ShowAllVisual_func
  1177. res := DllCall(ShowAllVisual_func)
  1178. return res
  1179. }
  1180. HideAllVisual()
  1181. {
  1182. global HideAllVisual_func
  1183. res := DllCall(HideAllVisual_func )
  1184. return res
  1185. }
  1186. GetFrameRate()
  1187. {
  1188. global GetFrameRate_func
  1189. res := DllCall(GetFrameRate_func )
  1190. return res
  1191. }
  1192. GetScreenSpecs(ByRef width, ByRef height)
  1193. {
  1194. global GetScreenSpecs_func
  1195. res := DllCall(GetScreenSpecs_func, IntP, width, IntP, height)
  1196. return res
  1197. }
  1198.  
  1199. SetParam("use_window", "1")
  1200. SetParam("window", "GTA:SA:MP")
  1201.  
  1202.  
  1203. IniRead, Fraktion, settings.ini, Daten, Fraktion
  1204. if(Fraktion == "" || Fraktion = "ERROR")
  1205. {
  1206. Fraktion := "SAPD"
  1207. IniWrite, %Fraktion%, settings.ini, Daten, Fraktion
  1208. }
  1209. IniRead, Abteilung, settings.ini, Daten, Abteilung
  1210. if(Abteilung = "ERROR")
  1211. {
  1212. Abteilung := ""
  1213. IniWrite, %Abteilung%, settings.ini, Daten, Abteilung
  1214. }
  1215. IniRead, Swatabteilung, settings.ini, Daten, Swatabteilung
  1216. if(Swatabteilung = "ERROR")
  1217. {
  1218. Swatabteilung := ""
  1219. IniWrite, %Swatabteilung%, settings.ini, Daten, Swatabteilung
  1220. }
  1221. IniRead, Laptop, settings.ini, Daten, Laptop
  1222. IniRead, Lock, settings.ini, Daten, Lock
  1223. IniRead, Chatlogsaver, settings.ini, Daten, Chatlogsaver
  1224. IniRead, TankZoll, settings.ini, Daten, TankZoll
  1225.  
  1226. IniRead, CheckCall, settings.ini, Sounds, CheckCall
  1227. IniRead, CheckSMS, settings.ini, Sounds, CheckSMS
  1228. IniRead, CheckLowHP, settings.ini, Sounds, CheckLowHP
  1229. IniRead, CheckBK, settings.ini, Sounds, CheckBK
  1230. IniRead, Callsound, settings.ini, Sounds, Callsound
  1231. IniRead, SMSsound, settings.ini, Sounds, SMSsound
  1232. IniRead, LowHPsound, settings.ini, Sounds, LowHPsound
  1233. IniRead, BKsound, settings.ini, Sounds, BKsound
  1234.  
  1235. IniRead, Profil1_1, settings.ini, Ausruesten, Profil1_1
  1236. IniRead, Profil1_2, settings.ini, Ausruesten, Profil1_2
  1237. IniRead, Profil1_3, settings.ini, Ausruesten, Profil1_3
  1238. IniRead, Profil1_4, settings.ini, Ausruesten, Profil1_4
  1239. IniRead, Profil1_5, settings.ini, Ausruesten, Profil1_5
  1240. IniRead, Profil1_6, settings.ini, Ausruesten, Profil1_6
  1241. IniRead, Profil1_7, settings.ini, Ausruesten, Profil1_7
  1242.  
  1243. IniRead, Profil2_1, settings.ini, Ausruesten, Profil2_1
  1244. IniRead, Profil2_2, settings.ini, Ausruesten, Profil2_2
  1245. IniRead, Profil2_3, settings.ini, Ausruesten, Profil2_3
  1246. IniRead, Profil2_4, settings.ini, Ausruesten, Profil2_4
  1247. IniRead, Profil2_5, settings.ini, Ausruesten, Profil2_5
  1248. IniRead, Profil2_6, settings.ini, Ausruesten, Profil2_6
  1249. IniRead, Profil2_7, settings.ini, Ausruesten, Profil2_7
  1250.  
  1251. IniRead, Profil3_1, settings.ini, Ausruesten, Profil3_1
  1252. IniRead, Profil3_2, settings.ini, Ausruesten, Profil3_2
  1253. IniRead, Profil3_3, settings.ini, Ausruesten, Profil3_3
  1254. IniRead, Profil3_4, settings.ini, Ausruesten, Profil3_4
  1255. IniRead, Profil3_5, settings.ini, Ausruesten, Profil3_5
  1256. IniRead, Profil3_6, settings.ini, Ausruesten, Profil3_6
  1257. IniRead, Profil3_7, settings.ini, Ausruesten, Profil3_7
  1258. IniRead, UCSkin, settings.ini, Ausruesten, UCSkin
  1259. IniRead, Schutzweste, settings.ini, Ausruesten, Schutzweste
  1260.  
  1261. IniRead, Passwort, settings.ini, Sonstiges, Passwort
  1262.  
  1263. IniRead, xBind1, %Hotkeys%, Maus, xBind1, %A_Space%
  1264. IniRead, xBind2, %Hotkeys%, Maus, xBind2, %A_Space%
  1265. IniRead, wBind1, %Hotkeys%, Maus, wBind1, %A_Space%
  1266. IniRead, wBind2, %Hotkeys%, Maus, wBind2, %A_Space%
  1267.  
  1268. loop, %Binds%
  1269. {
  1270. IniRead, Key%A_Index%, %Hotkeys%, Hotkeys, Key%A_Index%, %A_Space%
  1271. IniRead, Bind%A_Index%, %Hotkeys%, Hotkeys, Bind%A_Index%, %A_Space%
  1272.  
  1273. IfNotEqual, Key%A_Index%,, Hotkey, % Key%A_Index%, Key%A_Index%
  1274.  
  1275. IniRead, SendenKey%A_Index%, %Hotkeys%, Senden, SendenKey%A_Index%, 0
  1276. }
  1277.  
  1278. IniRead, Overlay_size, Overlay.ini, Status Overlay, Overlay_size, 7
  1279. IniRead, Overlay_posx, Overlay.ini, Status Overlay, Overlay_posx, 18
  1280. IniRead, Overlay_posy, Overlay.ini, Status Overlay, Overlay_posy, 265
  1281.  
  1282. IniRead, HP_size, Overlay.ini, HP Overlay, HP_size, 8
  1283. IniRead, HP_posx, Overlay.ini, HP Overlay, HP_posx, 715
  1284. IniRead, HP_posy, Overlay.ini, HP Overlay, HP_posy, 88
  1285.  
  1286. IniRead, AP_size, Overlay.ini, AP Overlay, AP_size, 8
  1287. IniRead, AP_posx, Overlay.ini, AP Overlay, AP_posx, 715
  1288. IniRead, AP_posy, Overlay.ini, AP Overlay, AP_posy, 59
  1289.  
  1290. IniRead, HPAnzeige, Overlay.ini, HP Overlay, HPAnzeige, 1
  1291. IniRead, APAnzeige, Overlay.ini, AP Overlay, APAnzeige, 1
  1292.  
  1293. Gui, Add, Text, x5 y485 w500 h20 gDanksagung, Atano (Pablo) Edit
  1294. Gui, Add, Tab2, x0 y0 w500 h482, Allgemein|Belegung|Vergaben|Admin-Befehle|Settings
  1295. Gui, Tab, Allgemein
  1296. Gui, Add, Picture, x115 y40 w175 h175, %Pictures%\FBILogo.png
  1297. Gui, Add, Text, x12 y220 w380 h110, Herzlich Willkommen, `nich freue mich, dass du dich f? meinen FBI-Keybinder entschieden hast. Ich habe mir das Ziel gesetzt dich bei deiner T?igkeit als Agent bestm?lich zu unterst?zen und dir mit zus?zlichen Hilfen unter die Arme zugreifen. `nSolltest du Fragen, Probleme, Kritik oder Anregungen haben, dann teile mir diese doch bitte im Thread des Keybinders mit oder kontaktiere mich privat. `nIch w?sche dir nun viel Erfolg und Spa?bei deiner T?igkeit als Agent!
  1298. Gui, Add, Groupbox, x12 y340 w380 h130, Neuigkeiten
  1299. FileRead, DailyMessage, daily.txt
  1300. Gui, Add, Text, x18 y360 w360 h100, Guten Tag, `nEs wurde ein Einweisungssystem eingef?t (Beta Version)`nDieses System ist mit dem Befehl /EinweisungA (Mit Leertaste best?igen) abrufbar`nAu?rdem wurde der Keybinder zu 90?. entbuggt.`nBei Buggs/W?schen bei Pablo_Atano melden.
  1301. Gui, Tab, Belegung
  1302. Belegungen =
  1303. (
  1304. Keybinds
  1305. ___________________________________________________________
  1306. 1 - Motor, Licht, Lock (wenn das Lock-System aktiviert ist)
  1307. Shift + 1 - /licht
  1308. 2 - D?fen wir Sie auf Drogen / Waffenbesitz ?erpr?en?
  1309. 3 - Zeigen Sie mir Ihre Scheine
  1310. 4 - Vielen Dank f? Ihre Kooperation
  1311. 5 - Steigen Sie bitte aus Ihrem Fahrzeug
  1312. 6 - Sie sind festgenommen (in den Dienstwagen)
  1313. 7 - Sie sind festgenommen (zu den Zellen)
  1314. 8 - /ram
  1315. 9 /grab
  1316. Alt + 8 - Ungrab
  1317. 0 - /carinfo
  1318. ?- Wiederholt die letzte Eingabe
  1319. Y - /lock
  1320. B - /uclight
  1321. J - /policelight
  1322. m - /members
  1323. P - Anzeigen der Position im /hq
  1324. STRG+P - Anzeigen der aktuellen Position im /r
  1325. STRG+ALT+P - Anzeigen der Position im /d
  1326. K - Kontrolliert einen Spieler
  1327. I - Bitte stecken Sie umgehend Ihre Waffen ein
  1328. U - /uncuff
  1329. ?- /hq ?ernimmt den Auftrag
  1330. ALT + ` - /hq Auftrag ausgef?rt
  1331. STRG + ?- /d ?ernimmt den Auftrag
  1332. STRG+Alt+?- /d Hat den Auftrag ausgef?rt
  1333. ALT + C - Zoll schlie?n bitte
  1334. ALT + C - /eject
  1335. ALT + Y - Isst einen Fisch
  1336. Alt + X - erstehilfe
  1337. - - /clear
  1338. ^ - Notruf-Annahme
  1339. Shift + ^ - Manuelle Notrufannahme
  1340. , - Startet die Stoppuhr
  1341. /cd - Startet einen Countdown
  1342. END - Startet einen Countdown
  1343. Windows - /wanted
  1344. Windows&1 - /wanted ls
  1345. Windows&2 - /wanted sf
  1346. Windows&3 - /wanted lv
  1347.  
  1348. F1 - /tog -> Phone
  1349. F3 - /erstehilfe
  1350. F4 - /ausruesten (Profil I - Streife)
  1351. F5 - /ausruesten (Profil II - Streife)
  1352. F6 - /ausruesten (Profil III - UC Streife)
  1353. ALT+F4 - /ausruesten
  1354. STRG+F4 - /heal
  1355.  
  1356. NumPad
  1357. ___________________________________________________________
  1358. NumPad, - /m Bitte halten Sie sich an die StVO
  1359. NumPad0 - /m Folgen Sie dem Wagen
  1360. NumPad1 - /m Stra?nverkehrskontrolle
  1361. NumPad2 - /m Halten Sie sofort an
  1362. NumPad3 - /m Unterlassen Sie die verfolgung
  1363. NumPad4 - /m Steigen Sie aus Ihrem Fahrzeug
  1364. NumPad5 - /m R?men Sie die Stra?
  1365. NumPad6 - /m Legen Sie Ihre Waffen nieder
  1366. NumPad7 - /cuff, /frisk
  1367. NumPad8 - /arrest
  1368. NumPad9 - /m Verlassen Sie dieses Gel?de
  1369. Alt+NumpadEnter - /m Unterlassen Sie die Verfolgung
  1370.  
  1371. Num/ - Zoll schlie?n
  1372. ALT+Num/ - Zoll ?fnen
  1373. Num* - /gov Die Zollstationen sind geschlossen
  1374. ALT+Num* - /gov Zollstation ge?fnet
  1375. Num+ - Ben?ige Verst?kung
  1376. ALT+Num+ - Verst?kung nicht mehr ben?igt
  1377.  
  1378. Befehle
  1379. ___________________________________________________________
  1380. /op - Offline Prison
  1381. /oa - Offline Knast
  1382. /dp - Death Prison
  1383. /da - Death Knast `
  1384.  
  1385. /codes - Zeigt alle Chatcodes an
  1386.  
  1387. /streife - Startet einen Streifendienst
  1388. /setEinheit - Einstellung der Streifeneinheit
  1389. /setNummer - Einstellungen der Streifennummer
  1390. /setPersonen - Einstellungen der Personen im Fahrzeug
  1391. /kennung - Zeigt deine aktuelle Streifenkennung an
  1392.  
  1393. /partner1 - Tr?t einen einen Streifenpartner ein
  1394. /partner2 - Tr?t einen zweiten Streifenpartner ein
  1395. /partner3 - Tr?t einen dritten Streifenpartner ein
  1396. /partners - Zeigt alle eingetragenen Streifenpartner an
  1397. /updatesteuersatz - Aktualisiert den Steuersatz
  1398. /settax - Manuelle Eingabe des Steuersatzes
  1399.  
  1400. /water- Aktiviert den Wassermodus
  1401. /swat - Aktiviert den SWAT-Modus (nur FBI)
  1402.  
  1403. /tasks - Zeigt alle noch zu erledigenden Aufgaben an
  1404. /addtask - F?t eine Aufgabe hinzu
  1405. /deletetask - L?cht eine Aufgabe
  1406.  
  1407. /gk - Zeigt den gesuchten Gk
  1408.  
  1409. /addts - F?t eine Todesstrafe hinzu
  1410. /deletets - Entfernt eine Todesstrafe
  1411. ALT+T - Zeigt die akuellen Todesstrafen
  1412.  
  1413. /hm - Zeigt die Hitmanliste
  1414. /copstats - Zeigt die aktuelle Statstik an
  1415. /overlay - (De-)aktiviert das Status-Overlay
  1416. /move overlay - Erm?licht das Verschieben des Overlays
  1417.  
  1418. /forum - Forum messages aktivieren
  1419. /info - Spielerinformationen anzeigen
  1420. /zollhelp - Zeigt die Zollstationen an
  1421.  
  1422. # - Auto-Arrest
  1423. ALT+# - Zeigt alle in der Arrestliste
  1424. F9 - Resettet die Arrestliste
  1425.  
  1426. /afind - Automatisches Suchen
  1427. /af - Automatisches Suchen
  1428. /as - Automatisches Zeigen
  1429. /pos - Automatisches Zeigen f? Fahrer / Partner
  1430. /dshow - Showpos im /d
  1431. /fshow - Showpos im /f
  1432. /rshow - Showpos im /r
  1433. < - Jeweils zum Beenden
  1434. /fahrer - Eintragen des Fahrers (Wird vor Partner1, Partner2, Partner3 genutzt)
  1435.  
  1436. /vf - /r Verfolge Verbrecher
  1437. /verfolgung - Erbitte Unterst?zung bei der Verfolgung
  1438. /ort - Letzter bekannter Aufenthaltsort
  1439. /luft - Fordere Luft?erwachung an
  1440.  
  1441. /jas - Ja Sir
  1442. /jam - Ja Madam
  1443. /ja - Ja, was kann ich f? Sie tun?
  1444. /tag - Guten Tag
  1445. /bye - Auf Wiedershen
  1446.  
  1447. /beweise - Haben Sie Beweise
  1448. /passieren - Sie d?fen passieren
  1449. /warten - Bitte warten Sie einen Augenblick
  1450. /rechte - Vorlesen der Rechte
  1451. /ruhe - Sie haben das Recht zu schweigen
  1452. /hdf - Sein Sie still
  1453. /runter - Steigen Sie vom Fahrzeug
  1454. /ende - Startet einen Countdown
  1455.  
  1456. /on - /pdmarker, /hitsound, /tog -> Phone
  1457. /uc - /undercover
  1458. /auc - /undercover mit zuf?ligem Skin
  1459. /sb - /showbadge
  1460. /kh - Schauen ob Spieler im Krankenhaus ist
  1461.  
  1462. /setkills - Aktuelle Kills setzen
  1463. /setdeaths - Aktuelle Tode setzen
  1464.  
  1465. /abholung - Ben?ige Abholung
  1466. /kabholung - Abholung nicht mehr ben?igt
  1467. /razzia - Razzia
  1468. /rz - Razzia (S.W.A.T.)
  1469.  
  1470. /stvo - M?hten Sie Punkte oder ein Ticket
  1471. /apunkte - Stellt nach /stvo automatisch Strafpunkte aus
  1472. /aticket - Stellt nach /stvo automatisch ein Ticket aus
  1473. /stvo[1-5] - Punkte oder Ticket?
  1474. /stvof - Ticket oder Flugscheinentzug?
  1475. /top - Ticket oder Punkte?
  1476. /tot - Ticket oder Take?
  1477. /kontrolle - Kontrolliert einen Spieler
  1478. /tst - Take Strafpunkt
  1479. /tw - Take Waffen
  1480. /tws - Take Waffenschein
  1481. /tfs - Take Flugschein
  1482. /td - Take Drogen
  1483. /tm - Take Materialien
  1484. /tall - Take alles
  1485.  
  1486. /ver - /HQ Habe verstanden
  1487. /dver - /d Habe verstanden
  1488. /fver - /f Habe verstanden
  1489. /rver - /r Habe verstanden
  1490. /wo - Wo befindet ihr euch?
  1491. /needbk - Wird Verst?kung weiterhin ben?igt?
  1492. /repos - Neu formieren in ...
  1493. /go - /HQ Zugriff
  1494. /rgo - /r Zugriff
  1495. /dgo - /d Zugriff
  1496. /fgo - /f Zugriff
  1497.  
  1498. /dstreife - Suche Streifenpartner im /d
  1499. /fstreife - Suche Streifenpartner im /f
  1500. /afk - /f Melde mich f? die n?hsten Minuten ab
  1501.  
  1502. /rb - Stra?nsperre setzen
  1503. /db - Stra?nsperre entfernen
  1504. /dba - Alle Stra?nsperren entfernen
  1505.  
  1506. /an - Nimmt einen Anruf entgegen
  1507. /ab - Anrufbeantworter
  1508. /danke - Danke f? Ihren Anruf (+/h)
  1509. /re - Antwort auf die letzte SMS
  1510. /read - Antwort auf die letzte AD
  1511. /kcall - Call by Name
  1512. /ksms - SMS by Name
  1513.  
  1514. /fischen - Automatisches Fischen
  1515. /kochen - Kocht alle Fische
  1516. /cf - Kocht alle Fische
  1517. /hp - Zeigt die HP aller Fische an
  1518. /fische - Zeigt Informationen ?er die gefangenen Fische an
  1519.  
  1520. STRG + T - Tempomat aktivieren
  1521. /tempo - Tempomat aktivieren (Geschwindigkeit einstellbar)
  1522. L - Tempomat: Geschwindigkeit um 5 KM/H senken
  1523. ?- Tempomat: Geschwindigkeit um 5 KM/h erh?en
  1524.  
  1525. /fg - Legt Festgeld an
  1526. /ap - Nimmt ein Paket an
  1527. /paket - Nimmt ein Paket an
  1528. /tanken - Betankt das Fahrzeug
  1529. /savestats - Speichert die aktuellen Stats
  1530. /relog - F?rt einen Relog durch
  1531. /fan - Gibt einem Spieler ein Autogramm
  1532. /minuten - Rechnet Sekunden in Minuten um
  1533. /chat - Cleat den Chat
  1534. /alotto - /lotto mit zuf?liger Zahl
  1535. /user - Zeigt die Statistik eines Users
  1536. /auto - Zeigt allgemeine Informationen zu einem Fahrzeug
  1537. /rmpos - Benennt die Position des Redmarkers
  1538. /einweisungA - Einweisung f? Neulinge
  1539.  
  1540.  
  1541. Tests:
  1542. /not - Notruftest
  1543. /test - Arresttest
  1544. /test1 - Paydaytest
  1545. )
  1546. Gui, Add, Edit, x6 y30 w382 h440 ReadOnly, %Belegungen%
  1547. Gui, Tab, Vergaben
  1548. Vergaben =
  1549. (
  1550. Wantedvergaben
  1551. ___________________________________________________________
  1552. ALT+Num1 - Angriff/Beschuss auf Beamte/Zivilisten
  1553. ALT+Num2 - Flucht/Fluchtversuch
  1554. ALT+Num3 - Verweigerung
  1555. ALT+Num4 - Behinderung der Justiz
  1556. ALT+Num5 - Besitz von Materialien
  1557. ALT+Num6 - Besitz von Drogen
  1558. ALT+Num7 - Beihilfe zur Flucht
  1559. ALT+Num8 - Illegaler Handel mit Materialien/Drogen
  1560. ALT+Num9 - Einbruch
  1561. ALT+N - Notruf-Missbrauch
  1562. ALT+Z - Zollflucht
  1563. ALT+J - Absichtliches Anfahren
  1564. ALT+K - Fahrzeugdiebstahl
  1565. ALT+L - Staatsfahrzeugdiebstahl
  1566. ALT+?- Diebstahl von bewaffneten Fahrzeugen
  1567. ALT+O - Beamtenbeleidigung
  1568. ALT+I - Waffengebrauch i.d.?
  1569. ALT+B - Beamtenbestechung
  1570. ALT+G - Stra?nverkehrsgef?rdung
  1571.  
  1572.  
  1573.  
  1574. Punktevergaben
  1575. ___________________________________________________________
  1576. STRG+Num0 - Rote Ampel missachtet
  1577. STRG+Num1 - Stra?nverkehrsgef?rdung
  1578. STRG+Num2 - Fahren auf falscher Seite
  1579. STRG+Num3 - Fahren mit ?erh?ter Geschwindigkeit
  1580. STRG+Num4 - Missachtung der Vorfahrt
  1581. STRG+Num5 - Fahren abseits der Stra?
  1582. STRG+Num6 - Fahren ohne Licht
  1583. STRG+Num7 - Parken im Parkverbot
  1584. STRG+Num8 - Stra?nverkehrsbehinderung
  1585. STRG+Num9 - Fahren unter Alkoholeinfluss
  1586. )
  1587. Gui, Add, Edit, x6 y30 w382 h440 ReadOnly, %Vergaben%
  1588. Gui, Tab, Vergaben
  1589. LaptopModus =
  1590. (
  1591. Allgemein
  1592. ___________________________________________________________
  1593. ALT&+ - Ben?ige keine Verst?kung
  1594.  
  1595. ALT&STRG&0 - Folgen Sie dem Wagen
  1596. ALT&STRG&1 - Stra?nverkehrskontrolle
  1597. ALT&STRG&2 - Halten Sie sofort an
  1598. ALT&STRG&3 - Letzte Warnung
  1599. ALT&STRG&4 - Steigen Sie aus Ihrem Fahrzeug
  1600. ALT&STRG&5 - R?men Sie die Stra?
  1601. ALT&STRG&6 - Legen Sie Ihre Waffen nieder
  1602. ALT&STRG&7 - /cuff, /frisk
  1603. ALT&STRG&9 - Verlassen Sie dieses Gel?de
  1604.  
  1605. Wantedvergabe
  1606. ___________________________________________________________
  1607. ALT&1 - Angriff/Beschuss auf Beamte/Zivilisten
  1608. ALT&2 - Flucht/Fluchtversuch
  1609. ALT&3 - Verweigerung
  1610. ALT&4 - Behinderung der Justiz
  1611. ALT&5 - Besitz von Materialien
  1612. ALT&6 - Besitz von Drogen
  1613. ALT&7 - Beihilfe zur Flucht
  1614. ALT&8 - Illegaler Handel mit Materialien/Drogen
  1615. ALT&9 - Einbruch
  1616.  
  1617. Punktevergabe
  1618. ___________________________________________________________
  1619. STRG&0 - Rote Ampel missachtet
  1620. STRG&1 - Stra?nverkehrsgef?rdung
  1621. STRG&2 - Fahren auf falscher Seite
  1622. STRG&3 - Fahren mit ?erh?ter Geschwindigkeit
  1623. STRG&4 - Missachtung der Vorfahrt
  1624. STRG&5 - Fahren abseits der Stra?
  1625. STRG&6 - Fahren ohne Licht
  1626. STRG&7 - Parken im Parkverbot
  1627. STRG&8 - Stra?nverkehrsbehinderung
  1628. STRG&9 - Fahren unter Alkoholeinfluss
  1629. )
  1630. Gui, Add, Edit, x6 y30 w382 h440 ReadOnly, %LaptopModus%
  1631. Gui, Tab, Admin-Befehle
  1632. AdminBefehle =
  1633. (
  1634. Ticket-System
  1635. ___________________________________________________________
  1636. /tt - Ticket annehmen
  1637. /dt - Ticket schlie?n
  1638. /gt - Ticket weiterleiten
  1639. /grund - Warum soll ich Sie weiterleiten?
  1640. /fragen - Weitere Fragen?
  1641. /tafk - Ticket wegen AFK schlie?n
  1642.  
  1643. /tickets - Zeigt die aktuelle Ticketstatistik (ENB geeignet)
  1644. /togtickets - (De-)aktiviert das TicketOverlay (nicht f? ENB)
  1645.  
  1646. N?zliches
  1647. ___________________________________________________________
  1648. /meldungen - Info ?er /sup und /a
  1649. /hacker - Zeigt alle Level 1er / potentielle Hacker
  1650. /rc - /respawncar
  1651.  
  1652. Sanktionen
  1653. ___________________________________________________________
  1654. /adabuse - AD-Abuse
  1655. /aabuse - /a - Abuse
  1656. /spam - /mute Spam
  1657.  
  1658. /bel - Beleidigung
  1659. /mbel - Mittlere Beleidigung
  1660. /sbel - Schwere Beleidigung
  1661.  
  1662. /sdm - Prison wegen SDM
  1663. /bansdm - /ban wegen SDM
  1664. /nodm - /prison DM in No DM Zone
  1665. /jobst?ung - /prison Jobst?ung `
  1666. jobdm - /prison Job Deathmatch
  1667. /intflucht - /prison Interrior-Flucht
  1668. /escflucht - /prison ESC-Flucht
  1669. /offflucht - /prison Offline-Flucht
  1670. /cardm - /prison Carsurf Dm
  1671. /anfahren - /prison Absichtliches Anfahren
  1672.  
  1673. /esccp - /kick ESC im Checkpoint
  1674. /afkp - AFK im Paintball
  1675. )
  1676.  
  1677.  
  1678. Gui, Add, Text, x6 y30 w382 h440 ReadOnly, %AdminBefehle%
  1679. Gui, Tab, Settings
  1680. Gui, Add, Text, x10 y40 w120 h20 , Fraktion
  1681. Gui, Add, Text, x170 y40 w150 h80 vFraktion, FBI
  1682. GuiControl, Choose, Fraktion, %Fraktion%
  1683. Gui, Add, Text, x10 y70 w120 h20 , Abteilung
  1684. Gui, Add, Text, x10 y85 w120 h20, Swatabteilung
  1685. Gui, Add, Edit, x170 y60 w150 h20 vAbteilung, %Abteilung%
  1686. Gui, Add, Edit, x170 y80 w150 h20 vSwatabteilung, %Swatabteilung%
  1687. Gui, Add, Checkbox, x10 y100 w220 h20 vLock Checked%Lock%, Lock-System aktivieren?
  1688. Gui, Add, Checkbox, x10 y130 w220 h20 vChatlogsaver Checked%Chatlogsaver%, Chatlogsaver aktivieren?
  1689. Gui, Add, Checkbox, x10 y160 w390 h20 vLaptop Checked%Laptop%, Laptopmodus aktivieren? (NumPadBinds werden auf ALT-Tasten verlegt)
  1690. Gui, Add, Checkbox, x10 y190 w220 h20 vTankZoll Checked%TankZoll%, Easy Tank- und Zoll-System aktivieren?
  1691. Gui, Add, Button, x125 y225 w150 h40 gSpeichern, Speichern
  1692. Gui, Add, Button, x215 y285 w150 h40 gSounds, Sounds
  1693. Gui, Add, Button, x35 y285 w150 h40 gAusruesten, Ausr?ten
  1694. Gui, Add, Button, x35 y405 w150 h40 ,Au?r Betrieb
  1695. Gui, Add, Button, x215 y405 w150 h40 gDruck, Druckversion
  1696. Gui, Show, w400 h500, Atano-Binder (Version %Version%)
  1697.  
  1698. IniRead, Punkte, Statistik.ini, Vergaben, Punkte
  1699. IniRead, Tickets, Statistik.ini, Vergaben, Tickets
  1700. IniRead, TicketGeld, Statistik.ini, Vergaben, TicketGeld
  1701. IniRead, Tazer, Statistik.ini, Tazer, Tazer
  1702. IniRead, OffArrest, Statistik.ini, Arrests, OffArrest
  1703. IniRead, Arrest, Statistik.ini, Arrests, Arrest
  1704. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  1705. IniRead, Kills, Statistik.ini, Kills, Kills
  1706. IniRead, VerbrecherKills, Statistik.ini, VerbrecherKills, VerbrecherKills
  1707. IniRead, DeathArrest, Statistik.ini, Arrests, DeathArrest
  1708. IniRead, Money, Statistik.ini, Arrests, Money
  1709. IniRead, Flugschein, Statistik.ini, Scheine, Flugschein
  1710. IniRead, Waffenschein, Statistik.ini, Scheine, Waffenschein
  1711. IniRead, Bootschein, Statistik.ini, Scheine, Bootschein
  1712.  
  1713.  
  1714.  
  1715. if(Punkte = "ERROR" || Punkte = "")
  1716. {
  1717. Punkte = 0
  1718. IniWrite, %Punkte%, Statistik.ini, Vergaben, Punkte
  1719. }
  1720. if(Tickets = "ERROR" || Tickets = "")
  1721. {
  1722. Tickets = 0
  1723. IniWrite, %Tickets%, Statistik.ini, Vergaben, Tickets
  1724. }
  1725. if(TicketGeld = "ERROR" || TicketGeld = "")
  1726. {
  1727. TicketGeld = 0
  1728. IniWrite, %TicketGeld%, Statistik.ini, Vergaben, TicketGeld
  1729. }
  1730. if(Tazer = "ERROR" || Tazer = "")
  1731. {
  1732. Tazer = 0
  1733. IniWrite, %Tazer%, Statistik.ini, Tazer, Tazer
  1734. }
  1735. if(OffArrest = "ERROR" || OffArrest = "")
  1736. {
  1737. OffArrest = 0
  1738. IniWrite, %OffArrest%, Statistik.ini, Arrests, OffArrest
  1739. }
  1740. if(Arrest = "ERROR" || Arrest = "")
  1741. {
  1742. Arrest = 0
  1743. IniWrite, %Arrest%, Statistik.ini, Arrests, Arrest
  1744. }
  1745. if(DeathArrest = "ERROR" || DeathArrest = "")
  1746. {
  1747. DeathArrest = 0
  1748. IniWrite, %DeathArrest%, Statistik.ini, Arrests, DeathArrest
  1749. }
  1750. if(Wanted = "ERROR" || Wanted = "")
  1751. {
  1752. Wanted = 0
  1753. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  1754. }
  1755. if(Kills = "ERROR" || Kills = "")
  1756. {
  1757. Kills = 0
  1758. IniWrite, %Kills%, Statistik.ini, Kills, Kills
  1759. }
  1760. if(Deaths = "ERROR" || Deaths = "")
  1761. {
  1762. Deaths = 0
  1763. Iniwrite, %Deaths%, Statistik.ini, deaths, Deaths
  1764. }
  1765. if(VerbrecherKills = "ERROR" || VerbrecherKills = "")
  1766. {
  1767. VerbrecherKills = 0
  1768. IniWrite, %VerbrecherKills%, Statistik.ini, VerbrecherKills, VerbrecherKills
  1769. }
  1770. if(Money = "ERROR" || Money = "")
  1771. {
  1772. Money = 0
  1773. IniWrite, %Money%, Statistik.ini, Arrests, Money
  1774. }
  1775. if(Flugschein = "ERROR" || Flugschein = "")
  1776. {
  1777. Flugschein = 0
  1778. IniWrite, %Flugschein%, Statistik.ini, Scheine, Flugschein
  1779. }
  1780. if(Waffenschein = "ERROR" || Waffenschein = "")
  1781. {
  1782. Waffenschein = 0
  1783. IniWrite, %Waffenschein%, Statistik.ini, Scheine, Waffenschein
  1784. }
  1785. if(Bootschein = "ERROR" || Bootschein = "")
  1786. {
  1787. Bootschein = 0
  1788. IniWrite, %Bootschein%, Statistik.ini, Scheine, Bootschein
  1789. }
  1790.  
  1791. IniRead, VolCall, settings.ini, Sounds, VolCall
  1792. IniRead, VolSMS, settings.ini, Sounds, VolSMS
  1793. IniRead, VolLowHP, settings.ini, Sounds, VolLowHP
  1794. IniRead, VolBK, settings.ini, Sounds, VolBk
  1795.  
  1796. IniRead, Chatlogsaver, settings.ini, Daten, Chatlogsaver
  1797. if (Chatlogsaver == 1)
  1798. {
  1799. SetTimer, chatlog, 500
  1800. }
  1801. else
  1802. {
  1803. SetTimer, chatlog, off
  1804. }
  1805.  
  1806. GtaCheckTrue=0
  1807. SetTimer, _GtaCheck, 1000
  1808. return
  1809.  
  1810.  
  1811. GuiClose:
  1812. DestroyAllVisual()
  1813. ExitApp
  1814.  
  1815.  
  1816.  
  1817. Danksagung:
  1818. Gui, 30: Add, Text, x15 y150 w620 h150, Dieser Keybinder wird von mir komplett kostenlos allen Staatsbeamten zur Verf?ung gestellt. Zum Gelingen dieses Keybinder bedanke ich mich recht herzlich bei `n`n-Valle und Tonyalva, welche das Grundkonzept der heute verwendeten GUI erfunden haben `n-John und Dean_Hunter, welche mir das Grundscript zur Verf?ung gestellt haben `n-Tom.Perry f? kleinere Unterst?zungen beim Scripten
  1819. Gui, 30: Font, s25 cblack, Georgia
  1820. Gui, 30: Add, Text, x15 y19 w620 h70 +center, Atano-Binder
  1821. Gui, 30: Font, s14 cblack, Georgia
  1822. Gui, 30: Add, Text, x405 y79 w230 h50, Keybinder V. f. Pablo_Atano
  1823. Gui, 30: Show, w650 h280, Atano-Binder - Danksagung
  1824. return
  1825.  
  1826. Sounds:
  1827. IniRead, Callsound, settings.ini, Sounds, Callsound
  1828. if(Callsound == "" || Callsound == "ERROR")
  1829. {
  1830. Callsound := "" . Sounds . "\Call.mp3"
  1831. IniWrite, %Callsound%, settings.ini, Sounds, Callsound
  1832. }
  1833. IniRead, SMSsound, settings.ini, Sounds, SMSsound
  1834. if(SMSsound = "" || SMSsound = "ERROR")
  1835. {
  1836. SMSsound := "" . Sounds . "\SMS.mp3"
  1837. IniWrite, %SMSsound%, settings.ini, Sounds, SMSsound
  1838. }
  1839. IniRead, LowHPsound, settings.ini, Sounds, LowHPsound
  1840. if(LowHPsound = "" || LowHPsound = "ERROR")
  1841. {
  1842. LowHPsound := "" . Sounds . "\LowHP.mp3"
  1843. IniWrite, %LowHPsound%, settings.ini, Sounds, LowHPsound
  1844. }
  1845. IniRead, BKsound, settings.ini, Sounds, BKsound
  1846. if(BKsound = "" || BKsound == "ERROR")
  1847. {
  1848. BKsound := "" . Sounds . "\BK.mp3"
  1849. IniWrite, %BKsound%, settings.ini, Sounds, BKsound
  1850. }
  1851. Gui, 4: Destroy
  1852. Gui, 4: Font, s10, bold
  1853. Gui, 4:Add, GroupBox, x36 y10 w700 h110 cwhite, Informationen
  1854. Gui, 4:Add, Text, x46 y30 w620 h80 cwhite, Spielt je nach Aktion einen Sound ab`, welchen du selber ausw?len kannst.`nAlternativ kann der Standardsound vom Keybinder genutzt werden. `n`nDas Auswahlmen?f? den Pfad kann ge?fnet werden`, indem du auf den Dateinamen klickst. `nErw?scht sind kleine bzw. kurze Sounds`, empfehlenswert sind .mp3-Dateien.
  1855. Gui, 4:Add, Checkbox, x52 y163 w13 h13 gCheckCall Checked%CheckCall% vCheckCall,
  1856. Gui, 4:Add, Checkbox, x52 y193 w13 h13 gCheckSMS Checked%CheckSMS% vCheckSMS,
  1857. Gui, 4:Add, Checkbox, x52 y223 w13 h13 gCheckLowHP Checked%CheckLowHP% vCheckLowHP,
  1858. Gui, 4:Add, Checkbox, x52 y253 w13 h13 gCheckBK Checked%CheckBK% vCheckBK,
  1859. Gui, 4:Add, GroupBox, x36 y130 w700 h160 cwhite, Sounds
  1860. Gui, 4:Add, Text, x76 y160 w60 h20 cwhite +center, Anruf:
  1861. Gui, 4:Add, Text, x76 y190 w60 h20 cwhite +center, SMS:
  1862. Gui, 4:Add, Text, x76 y220 w60 h20 cwhite +center, Low-HP:
  1863. Gui, 4:Add, Text, x76 y250 w60 h20 cwhite +center, BK:
  1864. Gui, 4:Add, Text, x156 y160 w540 h20 cwhite +0x200 +E0x20210 +center gCallAuswahl vCallAuswahl, %Callsound%
  1865. Gui, 4:Add, Text, x156 y190 w540 h20 cwhite +0x200 +E0x20210 +center gSMSAuswahl vSMSAuswahl, %SMSsound%
  1866. Gui, 4:Add, Text, x156 y220 w540 h20 cwhite +0x200 +E0x20210 +center gLowHPAuswahl vLowHPAuswahl, %LowHPsound%
  1867. Gui, 4:Add, Text, x156 y250 w540 h20 cwhite +0x200 +E0x20210 +center gBKAuswahl vBKAuswahl, %BKsound%
  1868. Gui, 4:Add, Picture, x705 y160 w20 h20 +BackgroundTrans gEinstellCall, %Pictures%\soundwahl.png
  1869. Gui, 4:Add, Picture, x705 y190 w20 h20 +BackgroundTrans gEinstellSMS, %Pictures%\soundwahl.png
  1870. Gui, 4:Add, Picture, x705 y220 w20 h20 +BackgroundTrans gEinstellLowHP, %Pictures%\soundwahl.png
  1871. Gui, 4:Add, Picture, x705 y250 w20 h20 +BackgroundTrans gEinstellBK, %Pictures%\soundwahl.png
  1872.  
  1873.  
  1874.  
  1875. IniRead, CheckCall, settings.ini, Sounds, CheckCall
  1876. IniRead, CheckSMS, settings.ini, Sounds, CheckSMS
  1877. IniRead, CheckLowHP, settings.ini, Sounds, CheckLowHP
  1878. IniRead, CheckBK, settings.ini, Sounds, CheckBK
  1879. IniRead, Callsound, settings.ini, Sounds, Callsound
  1880. IniRead, SMSsound, settings.ini, Sounds, SMSsound
  1881. IniRead, LowHPsound, settings.ini, Sounds, LowHPsound
  1882. IniRead, BKsound, settings.ini, Sounds, BKsound
  1883. GuiControl, 4: , CheckCall, %CheckCall%
  1884. GuiControl, 4: , CheckSMS, %CheckSMS%
  1885. GuiControl, 4: , CheckLowHP, %CheckLowHP%
  1886. GuiControl, 4: , CheckBK, %CheckBK%
  1887. GuiControl, 4: , CallAuswahl, %CallSound%
  1888. GuiControl, 4: , SMSAuswahl, %SMSSound%
  1889. GuiControl, 4: , LowHPAuswahl, %LowHPSound%
  1890. GuiControl, 4: , BKAuswahl, %BKSound%
  1891. Gui, 4: Add, Button, x296 y300 w180 h50 gZur?k, Zur?k
  1892. Gui, 4:Color, 292929
  1893. Gui, 4:Show, w780 h372, Sounds
  1894.  
  1895. IniRead, VolCall, settings.ini, Sounds, VolCall
  1896. IniRead, VolSMS, settings.ini, Sounds, VolSMS
  1897. IniRead, VolLowHP, settings.ini, Sounds, VolLowHP
  1898. IniRead, VolBK, settings.ini, Sounds, VolBK
  1899.  
  1900. if(VolCall = "" || VolCall = "ERROR")
  1901. {
  1902. VolCall := 100
  1903. IniWrite, %VolCall%, settings.ini, Sounds, VolCall
  1904. }
  1905. if(VolSMS = "" || VolSMS = "ERROR")
  1906. {
  1907. VolSMS := 100
  1908. IniWrite, %VolSMS%, settings.ini, Sounds, VolSMS
  1909. }
  1910. if(VolLowHP = "" || VolLowHP = "ERROR")
  1911. {
  1912. VolLowHP := 100
  1913. IniWrite, %VolLowHP%, settings.ini, Sounds, VolLowHP
  1914. }
  1915. if(VolBK = "" || VolBK = "ERROR")
  1916. {
  1917. VolBK := 100
  1918. IniWrite, %VolBK%, settings.ini, Sounds, VolBK
  1919. }
  1920. SetParam("use_window", "1")
  1921. SetParam("window", "GTA:SA:MP")
  1922. return
  1923.  
  1924. Zur?k:
  1925. 4GuiClose:
  1926. Gui, 4: Destroy
  1927. return
  1928.  
  1929. CallAuswahl:
  1930. if(CheckCall = 1)
  1931. {
  1932. FileSelectFile, Callsoundx, 3, %Sounds%, MP3-Sound ausw?len,*.mp3
  1933. if(Callsoundx != "")
  1934. {
  1935. Callsound := Callsoundx
  1936. IniWrite, %Callsound%, settings.ini, Sounds, Callsound
  1937. GuiControl, 4: , CallAuswahl, %CallSound%
  1938. if(A_OSVersion != "WIN_XP")
  1939. {
  1940. SoundSetWaveVolume, %VolCall%
  1941. }
  1942. SoundPlay, %CallSound%
  1943. }
  1944. }
  1945. return
  1946.  
  1947. SMSAuswahl:
  1948. if(CheckSMS = 1)
  1949. {
  1950. FileSelectFile, SMSsoundx, 3, %Sounds%, MP3-Sound ausw?len,*.mp3
  1951. if(SMSsoundx != "")
  1952. {
  1953. SMSsound := SMSsoundx
  1954. IniWrite, %SMSsound%, settings.ini, Sounds, SMSsound
  1955. GuiControl, 4: , SMSAuswahl, %SMSSound%
  1956. if(A_OSVersion != "WIN_XP")
  1957. {
  1958. SoundSetWaveVolume, %VolCall%
  1959. }
  1960. SoundPlay, %SMSSound%
  1961. }
  1962. }
  1963. return
  1964.  
  1965. LowHPAuswahl:
  1966. if(CheckLowHP = 1)
  1967. {
  1968. FileSelectFile, LowHPsoundx, 3, %Sounds%, MP3-Sound ausw?len,*.mp3
  1969. if(LowHPsoundx != "")
  1970. {
  1971. LowHPsound := LowHPsoundx
  1972. IniWrite, %LowHPsound%, settings.ini, Sounds, LowHPsound
  1973. GuiControl, 4: , LowHPAuswahl, %LowHPSound%
  1974. if(A_OSVersion != "WIN_XP")
  1975. {
  1976. SoundSetWaveVolume, %VolCall%
  1977. }
  1978. SoundPlay, %LowHPSound%
  1979. }
  1980. }
  1981. return
  1982.  
  1983. BKAuswahl:
  1984. if(CheckBK = 1)
  1985. {
  1986. FileSelectFile, BKsoundx, 3, %Sounds%, MP3-Sound ausw?len,*.mp3
  1987. if(BKsoundx != "")
  1988. {
  1989. BKsound := BKsoundx
  1990. IniWrite, %BKsound%, settings.ini, Sounds, BKsound
  1991. GuiControl, 4: , BKAuswahl, %BKSound%
  1992. if(A_OSVersion != "WIN_XP")
  1993. {
  1994. SoundSetWaveVolume, %VolCall%
  1995. }
  1996. SoundPlay, %BKSound%
  1997. }
  1998. }
  1999. return
  2000.  
  2001. CheckCall:
  2002. Gui, 4: Submit, NoHide
  2003. IniWrite, %CheckCall%, settings.ini, Sounds, CheckCall
  2004. return
  2005.  
  2006. CheckSMS:
  2007. Gui, 4: Submit, NoHide
  2008. IniWrite, %CheckSMS%, settings.ini, Sounds, CheckSMS
  2009. GuiControl, 4: Choose, CheckSMS, %CheckSMS%
  2010. return
  2011.  
  2012. CheckLowHP:
  2013. Gui, 4: Submit, NoHide
  2014. IniWrite, %CheckLowHP%, settings.ini, Sounds, CheckLowHP
  2015. GuiControl, 4: Choose, CheckLowHP, %CheckLowHP%
  2016. return
  2017.  
  2018. CheckBK:
  2019. Gui, 4: Submit, NoHide
  2020. IniWrite, %CheckBK%, settings.ini, Sounds, CheckBK
  2021. GuiControl, 4: Choose, CheckBK, %CheckBK%
  2022. return
  2023.  
  2024. EinstellCall:
  2025. if(CheckCall = 1)
  2026. {
  2027. if(A_OSVersion != "WIN_XP")
  2028. {
  2029. Gui, 41: Destroy
  2030. Gui, 41: Add, Text, x15 y10 w60 h20, Lautst?ke:
  2031. Gui, 41: Add, Slider, x5 y30 w310 h30 AltSubmit vVolCall gVolCall, %VolCall%
  2032. Gui, 41: Add, Text, x15 y60 w30 h20 +center, Min
  2033. Gui, 41: Add, Text, x285 y60 w30 h20 +center, Max
  2034. VolCallProz := "" . VolCall . "%"
  2035. Gui, 41: Add, Text, x40 y60 w240 h20 +center vVolCallProz, %VolCallProz%
  2036. Gui, 41: Show
  2037. }
  2038. else
  2039. {
  2040. MsgBox, 48, Einstellung Callsound, Es tut mir leid`, aber Windows XP Nutzer k?nen die Lautst?ke des jeweiligen Sounds aus technischen Gr?den leider nicht einstellen.`nEine M?lichkeit w?e es jedoch die Sounddatei mit einem Audio-Bearbeitungsprogramm auf deine gew?schte Lautst?ke manuell anzupassen.
  2041. }
  2042. }
  2043. return
  2044.  
  2045. EinstellSMS:
  2046. if(CheckSMS = 1)
  2047. {
  2048. if(A_OSVersion != "WIN_XP")
  2049. {
  2050. Gui, 42: Destroy
  2051. Gui, 42: Add, Text, x15 y10 w60 h20, Lautst?ke:
  2052. Gui, 42: Add, Slider, x5 y30 w310 h30 AltSubmit vVolSMS gVolSMS, %VolSMS%
  2053. Gui, 42: Add, Text, x15 y60 w30 h20 +center, Min
  2054. Gui, 42: Add, Text, x285 y60 w30 h20 +center, Max
  2055. VolSMSProz := "" . VolSMS . "%"
  2056. Gui, 42: Add, Text, x40 y60 w240 h20 +center vVolSMSProz, %VolSMSProz%
  2057. Gui, 42: Show
  2058. }
  2059. else
  2060. {
  2061. MsgBox, 48, Einstellung SMSsound, Es tut mir leid`, aber Windows XP Nutzer k?nen die Lautst?ke des jeweiligen Sounds aus technischen Gr?den leider nicht einstellen.`nEine M?lichkeit w?e es jedoch die Sounddatei mit einem Audio-Bearbeitungsprogramm auf deine gew?schte Lautst?ke manuell anzupassen.
  2062. }
  2063. }
  2064. return
  2065.  
  2066. EinstellLowHP:
  2067. if(CheckLowHP = 1)
  2068. {
  2069. if(A_OSVersion != "WIN_XP")
  2070. {
  2071. Gui, 43: Destroy
  2072. Gui, 43: Add, Text, x15 y10 w60 h20, Lautst?ke:
  2073. Gui, 43: Add, Slider, x5 y30 w310 h30 AltSubmit vVolLowHP gVolLowHP, %VolLowHP%
  2074. Gui, 43: Add, Text, x15 y60 w30 h20 +center, Min
  2075. Gui, 43: Add, Text, x285 y60 w30 h20 +center, Max
  2076. VolLowHPProz := "" . VolLowHP . "%"
  2077. Gui, 43: Add, Text, x40 y60 w240 h20 +center vVolLowHPProz, %VolLowHPProz%
  2078. Gui, 43: Show
  2079. }
  2080. else
  2081. {
  2082. MsgBox, 48, Einstellung LowHPsound, Es tut mir leid`, aber Windows XP Nutzer k?nen die Lautst?ke des jeweiligen Sounds aus technischen Gr?den leider nicht einstellen.`nEine M?lichkeit w?e es jedoch die Sounddatei mit einem Audio-Bearbeitungsprogramm auf deine gew?schte Lautst?ke manuell anzupassen.
  2083. }
  2084. }
  2085. return
  2086.  
  2087. EinstellBK:
  2088. if(CheckBK = 1)
  2089. {
  2090. if(A_OSVersion != "WIN_XP")
  2091. {
  2092. Gui, 44: Destroy
  2093. Gui, 44: Add, Text, x15 y10 w60 h20, Lautst?ke:
  2094. Gui, 44: Add, Slider, x5 y30 w310 h30 AltSubmit vVolBK gVolBK, %VolBK%
  2095. Gui, 44: Add, Text, x15 y60 w30 h20 +center, Min
  2096. Gui, 44: Add, Text, x285 y60 w30 h20 +center, Max
  2097. VolBKProz := "" . VolBK . "%"
  2098. Gui, 44: Add, Text, x40 y60 w240 h20 +center vVolBKProz, %VolBKProz%
  2099. Gui, 44: Show
  2100. }
  2101. else
  2102. {
  2103. MsgBox, 48, Einstellung BKsound, Es tut mir leid`, aber Windows XP Nutzer k?nen die Lautst?ke des jeweiligen Sounds aus technischen Gr?den leider nicht einstellen.`nEine M?lichkeit w?e es jedoch die Sounddatei mit einem Audio-Bearbeitungsprogramm auf deine gew?schte Lautst?ke manuell anzupassen.
  2104. }
  2105. }
  2106. return
  2107.  
  2108. VolCall:
  2109. GuiControlGet MemVol,, VolCall
  2110. VolCallProz := "" . VolCall . "%"
  2111. GuiControl,,VolCallProz, %VolCallProz%
  2112. SoundSetWaveVolume %MemVol%
  2113. SoundPlay, %Callsound%
  2114. IniWrite, %VolCall%, settings.ini, Sounds, VolCall
  2115. return
  2116.  
  2117.  
  2118. VolSMS:
  2119. GuiControlGet MemVol,, VolSMS
  2120. VolSMSProz := "" . VolSMS . "%"
  2121. GuiControl,,VolSMSProz, %VolSMSProz%
  2122. SoundSetWaveVolume %MemVol%
  2123. SoundPlay, %SMSsound%
  2124. IniWrite, %VolSMS%, settings.ini, Sounds, VolSMS
  2125. return
  2126.  
  2127. VolLowHP:
  2128. GuiControlGet MemVol,, VolLowHP
  2129. VolLowHPProz := "" . VolLowHP . "%"
  2130. GuiControl,,VolLowHPProz, %VolLowHPProz%
  2131. SoundSetWaveVolume %MemVol%
  2132. SoundPlay, %LowHPsound%
  2133. IniWrite, %VolLowHP%, settings.ini, Sounds, VolLowHP
  2134. return
  2135.  
  2136. VolBK:
  2137. GuiControlGet MemVol,, VolBK
  2138. VolBkProz := "" . VolBk . "%"
  2139. GuiControl,,VolBKProz, %VolBKProz%
  2140. SoundSetWaveVolume %MemVol%
  2141. SoundPlay, %Bksound%
  2142. IniWrite, %VolBK%, settings.ini, Sounds, VolBK
  2143. return
  2144.  
  2145. 41GuiClose:
  2146. Soundplay, avixa.avi
  2147. Gui, 41: Destroy
  2148. return
  2149.  
  2150. 42GuiClose:
  2151. Soundplay, avixa.avi
  2152. Gui, 42: Destroy
  2153. return
  2154.  
  2155. 43GuiClose:
  2156. Soundplay, avixa.avi
  2157. Gui, 43: Destroy
  2158. return
  2159.  
  2160. 44GuiClose:
  2161. Soundplay, avixa.avi
  2162. Gui, 44: Destroy
  2163. return
  2164.  
  2165. Ausruesten:
  2166. Gui, 3: Destroy
  2167. IniRead, Profil1_1, settings.ini, Ausruesten, Profil1_1
  2168. IniRead, Profil1_2, settings.ini, Ausruesten, Profil1_2
  2169. IniRead, Profil1_3, settings.ini, Ausruesten, Profil1_3
  2170. IniRead, Profil1_4, settings.ini, Ausruesten, Profil1_4
  2171. IniRead, Profil1_5, settings.ini, Ausruesten, Profil1_5
  2172. IniRead, Profil1_6, settings.ini, Ausruesten, Profil1_6
  2173. IniRead, Profil1_7, settings.ini, Ausruesten, Profil1_7
  2174.  
  2175. IniRead, Profil2_1, settings.ini, Ausruesten, Profil2_1
  2176. IniRead, Profil2_2, settings.ini, Ausruesten, Profil2_2
  2177. IniRead, Profil2_3, settings.ini, Ausruesten, Profil2_3
  2178. IniRead, Profil2_4, settings.ini, Ausruesten, Profil2_4
  2179. IniRead, Profil2_5, settings.ini, Ausruesten, Profil2_5
  2180. IniRead, Profil2_6, settings.ini, Ausruesten, Profil2_6
  2181. IniRead, Profil2_7, settings.ini, Ausruesten, Profil2_7
  2182.  
  2183. IniRead, Profil3_1, settings.ini, Ausruesten, Profil3_1
  2184. IniRead, Profil3_2, settings.ini, Ausruesten, Profil3_2
  2185. IniRead, Profil3_3, settings.ini, Ausruesten, Profil3_3
  2186. IniRead, Profil3_4, settings.ini, Ausruesten, Profil3_4
  2187. IniRead, Profil3_5, settings.ini, Ausruesten, Profil3_5
  2188. IniRead, Profil3_6, settings.ini, Ausruesten, Profil3_6
  2189. IniRead, Profil3_7, settings.ini, Ausruesten, Profil3_7
  2190. IniRead, UCSkin, settings.ini, Ausruesten, UCSkin
  2191. IniRead, Schutzweste, settings.ini, Ausruesten, Schutzweste
  2192.  
  2193. If(UCSkin == "ERROR")
  2194. {
  2195. UCSkin := ""
  2196. }
  2197.  
  2198. Gui, 3: Add, Text, x22 y29 w810 h70 , Hier kannst du dir drei Ausr?ten-Profile zusammenstellen und direkt ingame abrufen. Die ersten beiden Profile sind f? den normalen Streifendienst gedacht und k?nen mit F4 bzw. F5 ausgew?lt werden. Im dritten Profil kann zus?zlich ein UC-Skin gew?lt werden und du kannst entscheiden, ob du mit einer Schutzweste auf Streife gehen m?htest oder nicht. Die UC-Streife kannst du mit F6 ausw?len. `nGehealt wirst du aber in jedem Fall. `nWICHTIG: Die erste Waffe darf nicht leer sein!
  2199. Gui, 3: Add, GroupBox, x12 y9 w830 h90 , Information
  2200. Gui, 3: Add, GroupBox, x12 y108 w830 h98 , Normale Streife
  2201. Gui, 3: Add, GroupBox, x12 y209 w830 h90 , Undercover Streife
  2202. Gui, 3: Add, Text, x22 y129 w110 h20 , Ausr?ten Profil I (F4):
  2203. Gui, 3: Add, DropDownList, x142 y127 w90 h110 vProfil1_1, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Rifle|Spray
  2204. Gui, 3: Add, DropDownList, x242 y127 w90 h110 vProfil1_2, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Rifle|Spray
  2205. Gui, 3: Add, DropDownList, x342 y127 w90 h110 vProfil1_3, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Rifle|Spray
  2206. Gui, 3: Add, DropDownList, x442 y127 w90 h110 vProfil1_4, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Rifle|Spray
  2207. Gui, 3: Add, DropDownList, x542 y127 w90 h110 vProfil1_5, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Rifle|Spray
  2208. Gui, 3: Add, DropDownList, x642 y127 w90 h110 vProfil1_6, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Rifle|Spray
  2209. Gui, 3: Add, DropDownList, x742 y127 w90 h110 vProfil1_7, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Rifle|Spray
  2210. GuiControl, 3: Choose, Profil1_1, %Profil1_1%
  2211. GuiControl, 3: Choose, Profil1_2, %Profil1_2%
  2212. GuiControl, 3: Choose, Profil1_3, %Profil1_3%
  2213. GuiControl, 3: Choose, Profil1_4, %Profil1_4%
  2214. GuiControl, 3: Choose, Profil1_5, %Profil1_5%
  2215. GuiControl, 3: Choose, Profil1_6, %Profil1_6%
  2216. GuiControl, 3: Choose, Profil1_7, %Profil1_7%
  2217. Gui, 3: Add, Text, x22 y179 w110 h20 , Ausr?ten Profil II (F5):
  2218. Gui, 3: Add, DropDownList, x142 y177 w90 h110 vProfil2_1, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2219. Gui, 3: Add, DropDownList, x242 y177 w90 h110 vProfil2_2, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2220. Gui, 3: Add, DropDownList, x342 y177 w90 h110 vProfil2_3, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2221. Gui, 3: Add, DropDownList, x442 y177 w90 h110 vProfil2_4, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2222. Gui, 3: Add, DropDownList, x542 y177 w90 h110 vProfil2_5, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2223. Gui, 3: Add, DropDownList, x642 y177 w90 h110 vProfil2_6, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2224. Gui, 3: Add, DropDownList, x742 y177 w90 h110 vProfil2_7, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2225. GuiControl, 3: Choose, Profil2_1, %Profil2_1%
  2226. GuiControl, 3: Choose, Profil2_2, %Profil2_2%
  2227. GuiControl, 3: Choose, Profil2_3, %Profil2_3%
  2228. GuiControl, 3: Choose, Profil2_4, %Profil2_4%
  2229. GuiControl, 3: Choose, Profil2_5, %Profil2_5%
  2230. GuiControl, 3: Choose, Profil2_6, %Profil2_6%
  2231. GuiControl, 3: Choose, Profil2_7, %Profil2_7%
  2232. Gui, 3: Add, Text, x22 y229 w110 h20 , UC-Profil (F6):
  2233. Gui, 3: Add, DropDownList, x142 y227 w90 h110 vProfil3_1, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2234. Gui, 3: Add, DropDownList, x242 y227 w90 h110 vProfil3_2, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2235. Gui, 3: Add, DropDownList, x342 y227 w90 h110 vProfil3_3, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2236. Gui, 3: Add, DropDownList, x442 y227 w90 h110 vProfil3_4, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2237. Gui, 3: Add, DropDownList, x542 y227 w90 h110 vProfil3_5, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2238. Gui, 3: Add, DropDownList, x642 y227 w90 h110 vProfil3_6, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2239. Gui, 3: Add, DropDownList, x742 y227 w90 h110 vProfil3_7, ||Schlagstock|Deagle|Shotgun|MP5|M4|Sniper|Spray
  2240. GuiControl, 3: Choose, Profil3_1, %Profil3_1%
  2241. GuiControl, 3: Choose, Profil3_2, %Profil3_2%
  2242. GuiControl, 3: Choose, Profil3_3, %Profil3_3%
  2243. GuiControl, 3: Choose, Profil3_4, %Profil3_4%
  2244. GuiControl, 3: Choose, Profil3_5, %Profil3_5%
  2245. GuiControl, 3: Choose, Profil3_6, %Profil3_6%
  2246. GuiControl, 3: Choose, Profil3_7, %Profil3_7%
  2247. Gui, 3: Add, Text, x142 y269 w90 h20 , UC-Skin (1-XX):
  2248. Gui, 3: Add, Edit, x242 y267 w110 h20 vUCSkin, %UCSkin%
  2249. Gui, 3: Add, CheckBox, x402 y267 w120 h20 vSchutzweste Checked%Schutzweste%, Schutzweste?
  2250. Gui, 3: Add, Button, x358 y305 w150 h40 gSpeichern2, Speichern
  2251. Gui, 3: Show, w867 h358, Ausr?ten
  2252. return
  2253.  
  2254. Speichern2:
  2255. GuiControlGet, Profil1_1
  2256. GuiControlGet, Profil1_2
  2257. GuiControlGet, Profil1_3
  2258. GuiControlGet, Profil1_4
  2259. GuiControlGet, Profil1_5
  2260. GuiControlGet, Profil1_6
  2261. GuiControlGet, Profil1_7
  2262.  
  2263. GuiControlGet, Profil2_1
  2264. GuiControlGet, Profil2_2
  2265. GuiControlGet, Profil2_3
  2266. GuiControlGet, Profil2_4
  2267. GuiControlGet, Profil2_5
  2268. GuiControlGet, Profil2_6
  2269. GuiControlGet, Profil2_7
  2270.  
  2271. GuiControlGet, Profil3_1
  2272. GuiControlGet, Profil3_2
  2273. GuiControlGet, Profil3_3
  2274. GuiControlGet, Profil3_4
  2275. GuiControlGet, Profil3_5
  2276. GuiControlGet, Profil3_6
  2277. GuiControlGet, Profil3_7
  2278.  
  2279. GuiControlGet, UCSkin
  2280. GuiControlGet, Schutzweste
  2281.  
  2282. IniWrite, %Profil1_1%, settings.ini, Ausruesten, Profil1_1
  2283. IniWrite, %Profil1_2%, settings.ini, Ausruesten, Profil1_2
  2284. IniWrite, %Profil1_3%, settings.ini, Ausruesten, Profil1_3
  2285. IniWrite, %Profil1_4%, settings.ini, Ausruesten, Profil1_4
  2286. IniWrite, %Profil1_5%, settings.ini, Ausruesten, Profil1_5
  2287. IniWrite, %Profil1_6%, settings.ini, Ausruesten, Profil1_6
  2288. IniWrite, %Profil1_7%, settings.ini, Ausruesten, Profil1_7
  2289.  
  2290. IniWrite, %Profil2_1%, settings.ini, Ausruesten, Profil2_1
  2291. IniWrite, %Profil2_2%, settings.ini, Ausruesten, Profil2_2
  2292. IniWrite, %Profil2_3%, settings.ini, Ausruesten, Profil2_3
  2293. IniWrite, %Profil2_4%, settings.ini, Ausruesten, Profil2_4
  2294. IniWrite, %Profil2_5%, settings.ini, Ausruesten, Profil2_5
  2295. IniWrite, %Profil2_6%, settings.ini, Ausruesten, Profil2_6
  2296. IniWrite, %Profil2_7%, settings.ini, Ausruesten, Profil2_7
  2297.  
  2298. IniWrite, %Profil3_1%, settings.ini, Ausruesten, Profil3_1
  2299. IniWrite, %Profil3_2%, settings.ini, Ausruesten, Profil3_2
  2300. IniWrite, %Profil3_3%, settings.ini, Ausruesten, Profil3_3
  2301. IniWrite, %Profil3_4%, settings.ini, Ausruesten, Profil3_4
  2302. IniWrite, %Profil3_5%, settings.ini, Ausruesten, Profil3_5
  2303. IniWrite, %Profil3_6%, settings.ini, Ausruesten, Profil3_6
  2304. IniWrite, %Profil3_7%, settings.ini, Ausruesten, Profil3_7
  2305.  
  2306. IniWrite, %UCSkin%, settings.ini, Ausruesten, UCSkin
  2307. IniWrite, %Schutzweste%, settings.ini, Ausruesten, Schutzweste
  2308.  
  2309. IniRead, Profil1_1, settings.ini, Ausruesten, Profil1_1
  2310. IniRead, Profil1_2, settings.ini, Ausruesten, Profil1_2
  2311. IniRead, Profil1_3, settings.ini, Ausruesten, Profil1_3
  2312. IniRead, Profil1_4, settings.ini, Ausruesten, Profil1_4
  2313. IniRead, Profil1_5, settings.ini, Ausruesten, Profil1_5
  2314. IniRead, Profil1_6, settings.ini, Ausruesten, Profil1_6
  2315. IniRead, Profil1_7, settings.ini, Ausruesten, Profil1_7
  2316.  
  2317. IniRead, Profil2_1, settings.ini, Ausruesten, Profil2_1
  2318. IniRead, Profil2_2, settings.ini, Ausruesten, Profil2_2
  2319. IniRead, Profil2_3, settings.ini, Ausruesten, Profil2_3
  2320. IniRead, Profil2_4, settings.ini, Ausruesten, Profil2_4
  2321. IniRead, Profil2_5, settings.ini, Ausruesten, Profil2_5
  2322. IniRead, Profil2_6, settings.ini, Ausruesten, Profil2_6
  2323. IniRead, Profil2_7, settings.ini, Ausruesten, Profil2_7
  2324.  
  2325. IniRead, Profil3_1, settings.ini, Ausruesten, Profil3_1
  2326. IniRead, Profil3_2, settings.ini, Ausruesten, Profil3_2
  2327. IniRead, Profil3_3, settings.ini, Ausruesten, Profil3_3
  2328. IniRead, Profil3_4, settings.ini, Ausruesten, Profil3_4
  2329. IniRead, Profil3_5, settings.ini, Ausruesten, Profil3_5
  2330. IniRead, Profil3_6, settings.ini, Ausruesten, Profil3_6
  2331. IniRead, Profil3_7, settings.ini, Ausruesten, Profil3_7
  2332. IniRead, UCSkin, settings.ini, Ausruesten, UCSkin
  2333. IniRead, Schutzweste, settings.ini, Ausruesten, Schutzweste
  2334.  
  2335. MsgBox, 64, , Gespeichert.
  2336. Gui, 3: Destroy
  2337. return
  2338.  
  2339.  
  2340. Speichern:
  2341. GuiControlGet, Fraktion
  2342. GuiControlGet, Abteilung
  2343. GuiControlGet, Swatabteilung
  2344. GuiControlGet, Laptop
  2345. GuiControlGet, Lock
  2346. GuiControlGet, Chatlogsaver
  2347. GuiControlGet, TankZoll
  2348. Gui, 5: Submit
  2349. Gui, 7: Submit
  2350. if(Chatlogsaver == 1)
  2351. {
  2352. SetTimer, Chatlog, Off
  2353. SetTimer, Chatlog, 500
  2354. }
  2355.  
  2356. IniWrite, %Fraktion%, settings.ini, Daten, Fraktion
  2357. IniWrite, %Abteilung%, settings.ini, Daten, Abteilung
  2358. IniWrite, %Swatabteilung%, settings.ini, Daten, Swatabteilung
  2359. IniWrite, %Laptop%, settings.ini, Daten, Laptop
  2360. IniWrite, %Lock%, settings.ini, Daten, Lock
  2361. IniWrite, %Chatlogsaver%, settings.ini, Daten, Chatlogsaver
  2362. IniWrite, %TankZoll%, settings.ini, Daten, TankZoll
  2363.  
  2364. IniRead, Fraktion, settings.ini, Daten, Fraktion
  2365. IniRead, Abteilung, settings.ini, Daten, Abteilung
  2366. IniRead, Swatabteilung, settings.ini, Daten, Swatabteilung
  2367. IniRead, Laptop, settings.ini, Daten, Laptop
  2368. IniRead, Lock, settings.ini, Daten, Lock
  2369. IniRead, Chatlogsaver, settings.ini, Daten, Chatlogsaver
  2370. IniRead, TankZoll, settings.ini, Daten, TankZoll
  2371.  
  2372. IniRead, CheckCall, settings.ini, Sounds, CheckCall
  2373. IniRead, CheckSMS, settings.ini, Sounds, CheckSMS
  2374. IniRead, CheckLowHP, settings.ini, Sounds, CheckLowHP
  2375. IniRead, CheckBK, settings.ini, Sounds, CheckBK
  2376. IniRead, Callsound, settings.ini, Sounds, Callsound
  2377. IniRead, SMSsound, settings.ini, Sounds, SMSsound
  2378. IniRead, LowHPsound, settings.ini, Sounds, LowHPsound
  2379. IniRead, BKsound, settings.ini, Sounds, BKsound
  2380.  
  2381. IniRead, VolCall, settings.ini, Sounds, VolCall
  2382. IniRead, VolSMS, settings.ini, Sounds, VolSMS
  2383. IniRead, VolLowHP,settings.ini, Sounds, VolLowHP
  2384. IniRead, VolBk, settings.ini, Sounds, VolBK
  2385.  
  2386. loop, %Binds%
  2387. {
  2388. IniWrite, % Key%A_Index%, %Hotkeys%, Hotkeys, Key%A_Index%
  2389. IniWrite, % Bind%A_Index%, %Hotkeys%, Hotkeys, Bind%A_Index%
  2390.  
  2391. IniWrite, % SendenKey%A_Index%, %Hotkeys%, Senden, SendenKey%A_Index%
  2392. }
  2393. IniWrite, %xBind1%, %Hotkeys%, Maus, xBind1
  2394. IniWrite, %xBind2%, %Hotkeys%, Maus, xBind2
  2395. IniWrite, %wBind1%, %Hotkeys%, Maus, wBind1
  2396. IniWrite, %wBind2%, %Hotkeys%, Maus, wBind2
  2397.  
  2398. IniRead, xBind1, %Hotkeys%, Maus, xBind1, %A_Space%
  2399. IniRead, xBind2, %Hotkeys%, Maus, xBind2, %A_Space%
  2400. IniRead, wBind1, %Hotkeys%, Maus, wBind1, %A_Space%
  2401. IniRead, wBind2, %Hotkeys%, Maus, wBind2, %A_Space%
  2402.  
  2403. loop, %Binds%
  2404. {
  2405. IniRead, Key%A_Index%, %Hotkeys%, Hotkeys, Key%A_Index%, %A_Space%
  2406. IniRead, Bind%A_Index%, %Hotkeys%, Hotkeys, Bind%A_Index%, %A_Space%
  2407.  
  2408. IfNotEqual, Key%A_Index%,, Hotkey, % Key%A_Index%, Key%A_Index%
  2409.  
  2410. IniRead, SendenKey%A_Index%, %Hotkeys%, Senden, SendenKey%A_Index%, 0
  2411. }
  2412.  
  2413.  
  2414.  
  2415.  
  2416.  
  2417.  
  2418. CustomBindsGui:
  2419. Gui, 5: Submit
  2420. Gui, 5: Destroy
  2421. IniRead, xBind1, %Hotkeys%, Maus, xBind1, %A_Space%
  2422. IniRead, xBind2, %Hotkeys%, Maus, xBind2, %A_Space%
  2423. IniRead, wBind1, %Hotkeys%, Maus, wBind1, %A_Space%
  2424. IniRead, wBind2, %Hotkeys%, Maus, wBind2, %A_Space%
  2425.  
  2426. loop, %Binds%
  2427. {
  2428. IniRead, Key%A_Index%, %Hotkeys%, Hotkeys, Key%A_Index%, %A_Space%
  2429. IniRead, Bind%A_Index%, %Hotkeys%, Hotkeys, Bind%A_Index%, %A_Space%
  2430.  
  2431. IfNotEqual, Key%A_Index%,, Hotkey, % Key%A_Index%, Key%A_Index%
  2432.  
  2433. IniRead, SendenKey%A_Index%, %Hotkeys%, Senden, SendenKey%A_Index%, 0
  2434. }
  2435.  
  2436. Gui, 5: Add, Tab2, x5 y5 h375 w655 +Theme -Background -Wrap, Hotkeys|Maustasten
  2437. Gui, 5:Tab, Hotkeys
  2438. Gui, 5:Add, GroupBox, x325 y50 h200 w1
  2439. Gui, 5:Font, underline
  2440. Gui, 5:Add, Text, x10 y30 h20, Taste
  2441. Gui, 5:Add, Text, x140 y30 h20, Aktion
  2442. Gui, 5:Add, Text, x340 y30 h20, Taste
  2443. Gui, 5:Add, Text, x470 y30 h20, Aktion
  2444. Gui, 5: Add, Text, x245 y30 h20, Direkt Senden
  2445. Gui, 5: Add, Text, x580 y30 h20, Direkt Senden
  2446. Gui, 5: Font
  2447.  
  2448. Gui, 5: Add, Hotkey, x10 y50 w120 h20 vKey1 Checked%Key1%, %Key1%
  2449. Gui, 5: Add, Edit, x140 y50 w120 h20 vBind1, %Bind1%
  2450. Gui, 5: Add, Hotkey, x10 y75 w120 h20 vKey2 Checked%Key2%, %Key2%
  2451. Gui, 5: Add, Edit, x140 y75 w120 h20 vBind2, %Bind2%
  2452. Gui, 5: Add, Hotkey, x10 y100 w120 h20 vKey3 Checked%Key3%, %Key3%
  2453. Gui, 5: Add, Edit, x140 y100 w120 h20 vBind3, %Bind3%
  2454. Gui, 5: Add, Hotkey, x10 y125 w120 h20 vKey4 Checked%Key4%, %Key4%
  2455. Gui, 5: Add, Edit, x140 y125 w120 h20 vBind4, %Bind4%
  2456. Gui, 5: Add, Hotkey, x10 y150 w120 h20 vKey5 Checked%Key5%, %Key5%
  2457. Gui, 5: Add, Edit, x140 y150 w120 h20 vBind5, %Bind5%
  2458. Gui, 5: Add, Hotkey, x10 y175 w120 h20 vKey6 Checked%Ke6%, %Key6%
  2459. Gui, 5: Add, Edit, x140 y175 w120 h20 vBind6, %Bind6%
  2460. Gui, 5: Add, Hotkey, x10 y200 w120 h20 vKey7 Checked%Key7%, %Key7%
  2461. Gui, 5: Add, Edit, x140 y200 w120 h20 vBind7, %Bind7%
  2462. Gui, 5: Add, Hotkey, x10 y225 w120 h20 vKey8 Checked%Key8%, %Key8%
  2463. Gui, 5: Add, Edit, x140 y225 w120 h20 vBind8, %Bind8%
  2464. Gui, 5: Add, Hotkey, x10 y250 w120 h20 vKey9 Checked%Key9%, %Key9%
  2465. Gui, 5: Add, Edit, x140 y250 w120 h20 vBind9, %Bind9%
  2466. Gui, 5: Add, Hotkey, x10 y275 w120 h20 vKey10 Checked%Key10%, %Key10%
  2467. Gui, 5: Add, Edit, x140 y275 w120 h20 vBind10, %Bind10%
  2468. Gui, 5: Add, Hotkey, x10 y300 w120 h20 vKey11 Checked%Key11%, %Key11%
  2469. Gui, 5: Add, Edit, x140 y300 w120 h20 vBind11, %Bind111%
  2470. Gui, 5: Add, Hotkey, x10 y325 w120 h20 vKey12 Checked%Key12%, %Key12%
  2471. Gui, 5: Add, Edit, x140 y325 w120 h20 vBind12, %Bind12%
  2472. Gui, 5: Add, Hotkey, x10 y350 w120 h20 vKey13 Checked%Key13%, %Key13%
  2473. Gui, 5: Add, Edit, x140 y350 w120 h20 vBind13, %Bind13%
  2474.  
  2475. Gui, 5: Add, Hotkey, x340 y50 w120 h20 vKey14 Checked%Key14%, %Key14%
  2476. Gui, 5: Add, Edit, x470 y50 w120 h20 vBind14, %Bind14%
  2477. Gui, 5: Add, Hotkey, x340 y75 w120 h20 vKey15 Checked%Key15%, %Key15%
  2478. Gui, 5: Add, Edit, x470 y75 w120 h20 vBind15, %Bind15%
  2479. Gui, 5: Add, Hotkey, x340 y100 w120 h20 vKey16 Checked%Key16%, %Key16%
  2480. Gui, 5: Add, Edit, x470 y100 w120 h20 vBind16, %Bind16%
  2481. Gui, 5: Add, Hotkey, x340 y125 w120 h20 vKey17 Checked%Key17%, %Key17%
  2482. Gui, 5: Add, Edit, x470 y125 w120 h20 vBind17, %Bind17%
  2483. Gui, 5: Add, Hotkey, x340 y150 w120 h20 vKey18 Checked%Key18%, %Key18%
  2484. Gui, 5: Add, Edit, x470 y150 w120 h20 vBind18, %Bind18%
  2485. Gui, 5: Add, Hotkey, x340 y175 w120 h20 vKey19 Checked%Key19%, %Key19%
  2486. Gui, 5: Add, Edit, x470 y175 w120 h20 vBind19, %Bind19%
  2487. Gui, 5: Add, Hotkey, x340 y200 w120 h20 vKey20 Checked%Key20%, %Key20%
  2488. Gui, 5: Add, Edit, x470 y200 w120 h20 vBind20, %Bind20%
  2489. Gui, 5: Add, Hotkey, x340 y225 w120 h20 vKey21 Checked%Key21%, %Key21%
  2490. Gui, 5: Add, Edit, x470 y225 w120 h20 vBind21, %Bind21%
  2491. Gui, 5: Add, Hotkey, x340 y250 w120 h20 vKey22 Checked%Key22%, %Key22%
  2492. Gui, 5: Add, Edit, x470 y250 w120 h20 vBind22, %Bind22%
  2493. Gui, 5: Add, Hotkey, x340 y275 w120 h20 vKey23 Checked%Key23%, %Key23%
  2494. Gui, 5: Add, Edit, x470 y275 w120 h20 vBind23, %Bind23%
  2495. Gui, 5: Add, Hotkey, x340 y300 w120 h20 vKey24 Checked%Key24%, %Key24%
  2496. Gui, 5: Add, Edit, x470 y300 w120 h20 vBind24, %Bind22%
  2497. Gui, 5: Add, Hotkey, x340 y325 w120 h20 vKey25 Checked%Key25%, %Key25%
  2498. Gui, 5: Add, Edit, x470 y325 w120 h20 vBind25, %Bind25%
  2499. Gui, 5: Add, Hotkey, x340 y350 w120 h20 vKey26 Checked%Key26%, %Key26%
  2500. Gui, 5: Add, Edit, x470 y350 w120 h20 vBind26, %Bind26%
  2501.  
  2502. Gui, 5: Font, norm
  2503. Gui, 5: Add, CheckBox, x270 y52 +BackgroundTrans vSendenKey1 Checked%SendenKey1%,
  2504. Gui, 5: Add, CheckBox, x270 y77 +BackgroundTrans vSendenKey2 Checked%SendenKey2%,
  2505. Gui, 5: Add, CheckBox, x270 y102 +BackgroundTrans vSendenKey3 Checked%SendenKey3%,
  2506. Gui, 5: Add, CheckBox, x270 y127 +BackgroundTrans vSendenKey4 Checked%SendenKey4%,
  2507. Gui, 5: Add, CheckBox, x270 y152 +BackgroundTrans vSendenKey5 Checked%SendenKey5%,
  2508. Gui, 5: Add, CheckBox, x270 y177 +BackgroundTrans vSendenKey6 Checked%SendenKey6%,
  2509. Gui, 5: Add, CheckBox, x270 y202 +BackgroundTrans vSendenKey7 Checked%SendenKey7%,
  2510. Gui, 5: Add, CheckBox, x270 y227 +BackgroundTrans vSendenKey8 Checked%SendenKey8%,
  2511. Gui, 5: Add, CheckBox, x270 y252 +BackgroundTrans vSendenKey9 Checked%SendenKey9%,
  2512. Gui, 5: Add, CheckBox, x270 y277 +BackgroundTrans vSendenKey10 Checked%SendenKey10%,
  2513. Gui, 5: Add, CheckBox, x270 y302 +BackgroundTrans vSendenKey11 Checked%SendenKey11%,
  2514. Gui, 5: Add, CheckBox, x270 y327 +BackgroundTrans vSendenKey12 Checked%SendenKey12%,
  2515. Gui, 5: Add, CheckBox, x270 y352 +BackgroundTrans vSendenKey13 Checked%SendenKey13%,
  2516.  
  2517. Gui, 5: Add, CheckBox, x600 y52 +BackgroundTrans vSendenKey14 Checked%SendenKey14%,
  2518. Gui, 5: Add, CheckBox, x600 y77 +BackgroundTrans vSendenKey15 Checked%SendenKey15%,
  2519. Gui, 5: Add, CheckBox, x600 y102 +BackgroundTrans vSendenKey16 Checked%SendenKey16%,
  2520. Gui, 5: Add, CheckBox, x600 y127 +BackgroundTrans vSendenKey17 Checked%SendenKey17%,
  2521. Gui, 5: Add, CheckBox, x600 y152 +BackgroundTrans vSendenKey18 Checked%SendenKey18%,
  2522. Gui, 5: Add, CheckBox, x600 y177 +BackgroundTrans vSendenKey19 Checked%SendenKey19%,
  2523. Gui, 5: Add, CheckBox, x600 y202 +BackgroundTrans vSendenKey20 Checked%SendenKey20%,
  2524. Gui, 5: Add, CheckBox, x600 y227 +BackgroundTrans vSendenKey21 Checked%SendenKey21%,
  2525. Gui, 5: Add, CheckBox, x600 y252 +BackgroundTrans vSendenKey22 Checked%SendenKey22%,
  2526. Gui, 5: Add, CheckBox, x600 y277 +BackgroundTrans vSendenKey23 Checked%SendenKey23%,
  2527. Gui, 5: Add, CheckBox, x600 y302 +BackgroundTrans vSendenKey24 Checked%SendenKey24%,
  2528. Gui, 5: Add, CheckBox, x600 y327 +BackgroundTrans vSendenKey25 Checked%SendenKey25%,
  2529. Gui, 5: Add, CheckBox, x600 y352 +BackgroundTrans vSendenKey26 Checked%SendenKey26%,
  2530.  
  2531.  
  2532.  
  2533. Gui, 5: Tab, Maustasten
  2534. Gui, 5: Font, underline
  2535. Gui, 5: Add, Text, x10 y30 h20, Taste
  2536. Gui, 5: Add, Text, x140 y30 h20, Aktion
  2537. Gui, 5: Add, Text, x300 y30 h20, Taste
  2538. Gui, 5: Add, Text, x430 y30 h20, Aktion
  2539. Gui, 5: Font
  2540. Gui, 5: Add, Text, x10 y50, Maustaste 4
  2541. Gui, 5: Add, Edit, x140 y50 w130 h20 vxBind1, %xBind1%
  2542. Gui, 5: Add, Text, x300 y50, Maustaste 5
  2543. Gui, 5: Add, Edit, x430 y50 w130 h20 vxBind2, %xBind2%
  2544. Gui, 5: Add, Text, x10 y75, Mausrad links kippen
  2545. Gui, 5: Add, Edit, x140 y75 w130 h20 vwBind1, %wBind1%
  2546. Gui, 5: Add, Text, x300 y75, Mausrad rechts kippen
  2547. Gui, 5: Add, Edit, x430 y75 w130 h20 vwBind2, %wBind2%
  2548. Menu, MenuBar, Add, &Speichern, Speichern
  2549. Menu, MenuBar, Add, &Informationen, Hotkeys_Informationen
  2550. Gui, 5: Menu, MenuBar
  2551. return
  2552.  
  2553. Hotkeys_Informationen:
  2554. MsgBox, 64, Staatsgewaltkeybinder: Informationen zu den eigenen Binds, F? eine Taste k?nen bis zu drei Befehle belegt werden. Trenne die Befehle mit dem Rautezeichen voneinander ab ("#").`nDie Taste "t" f? das ?fnen der Chat-Konsole muss NICHT ber?ksichtigt werden. Du kannst selbst entscheiden`, ob der Befehl direkt gesendet werden soll oder ob der eingegebene Befehl / Text erst im Chatfenster best?igt werden muss. Bei der zweiten Variante kannst mit folgender Kombination {left XY} den Cursor um XY Zeichen nach lanks bewegen. Verwendest du {space} am Ende`, kannst du nach dem Befehl / Text diesen weiter erg?zen.`n`nFolgende "K?zel" habenin beiden F?len noch eine zus?zliche Funktion:`n<name> = Wird ersetzt durch den Namen `n<hp> / <car> = Wird ersetzt durch die aktuelle Player- oder Car-HP`n<time> = Wird ersetzt durch die akt. Uhrzeit `n<date> = Wird ersetzt durch das akt. Datum `n<pos> = Wird ersetzt durch die aktuelle Position`n<einheit> = Wird ersetzt durch die aktuelle Streifeneinheit
  2555. return
  2556.  
  2557.  
  2558.  
  2559. Druck:
  2560. IfExist, Druckversion.txt
  2561. {
  2562. FileDelete, Druckversion.txt
  2563. }
  2564.  
  2565. FileAppend, Belegungen`n %Belegungen%`n`n%Vergaben%`n`nLaptopModus `n%LaptopModus%`n`nAdmin-Befehle `n%AdminBefehle%, Druckversion.txt
  2566. MsgBox, 64, Druckversion, Die Druckversion befindet sich nun im Ordner des Keybinders.
  2567. return
  2568.  
  2569.  
  2570. chatlog:
  2571. WinWait, GTA:SA:MP
  2572. WinWaitClose, GTA:SA:MP
  2573. FileCreateDir, %A_MyDocuments%\GTA San Andreas User Files\SAMP\ChatlogBackups
  2574. FormatTime, zeit,%A_Now%,dd.MM HH_mm
  2575. FileCopy,%A_MyDocuments%\GTA San Andreas User Files\SAMP\Chatlog.txt,%A_MyDocuments%\GTA San Andreas User Files\SAMP\ChatlogBackups\Chatlog_%zeit%.txt,0
  2576. return
  2577.  
  2578.  
  2579. _GtaCheck:
  2580. Process , exist, gta_sa.exe
  2581. GtaPid := ErrorLevel
  2582. if (GtaPid != 0)
  2583. {
  2584. if(GtaCheckTrue == "0")
  2585. {
  2586. GtaCheckTrue := "1"
  2587. if (Chatlogsaver == 1)
  2588. {
  2589. SetTimer, chatlog, off
  2590. SetTimer, chatlog, 500
  2591. }
  2592. else
  2593. {
  2594. SetTimer, chatlog, off
  2595. }
  2596. }
  2597. }
  2598. else
  2599. {
  2600. GtaCheckTrue := "0"
  2601. }
  2602. return
  2603.  
  2604.  
  2605.  
  2606.  
  2607. ChatLine(firstline, instr, lines=5){
  2608. loop, %lines%
  2609. {
  2610. GetChatLine(firstline + (A_Index - 1), chat)
  2611. if(InStr(chat, instr))
  2612. return chat
  2613. }
  2614. return
  2615. }
  2616.  
  2617.  
  2618. IsPlayerInRangeOfPoint_fast(x, y, z, r)
  2619. {
  2620. static pos_x, pos_y, pos_z, lastcalled
  2621. if(lastcalled < A_TickCount - 150){
  2622. GetPlayerPosition(pos_x, pos_y, pos_z, pos_r)
  2623. lastcalled := A_TickCount
  2624. }
  2625. d := sqrt((sqrt((pos_x - x) ** 2 + (pos_y - y) ** 2) ** 2) + (pos_z - z) ** 2)
  2626. if(d < r)
  2627. return 1
  2628. return 0
  2629. }
  2630.  
  2631. IsPlayerInRangeOfPoint2D_fast(x, y, r){
  2632. static pos_x, pos_y, lastcalled
  2633. if(lastcalled < A_TickCount - 150){
  2634. GetPlayerPosition(pos_x, pos_y, pos_z, pos_r)
  2635. lastcalled := A_TickCount
  2636. }
  2637. d := sqrt((pos_x - x) ** 2 + (pos_y - y) ** 2)
  2638. if(d < r)
  2639. return 1
  2640. return 0
  2641. }
  2642.  
  2643. GetDistanceFromPoint(x, y, z)
  2644. {
  2645. GetPlayerPosition(pos_x, pos_y, pos_z, pos_r)
  2646. return sqrt((sqrt((pos_x - x) ** 2 + (pos_y - y) ** 2) ** 2) + (pos_z - z) ** 2)
  2647. }
  2648.  
  2649. GetDistancebetween(x, y, z, pos_x, pos_y, pos_z)
  2650. {
  2651. return sqrt((sqrt((pos_x - x) ** 2 + (pos_y - y) ** 2) ** 2) + (pos_z - z) ** 2)
  2652. }
  2653.  
  2654.  
  2655. GetDistanceFromPoint2D(x, y){
  2656. GetPlayerPosition(pos_x, pos_y, pos_z, pos_r)
  2657. return sqrt((pos_x - x) ** 2 + (pos_y - y) ** 2)
  2658. }
  2659.  
  2660.  
  2661. +T::
  2662. ~t::
  2663. Suspend On
  2664. Hotkey, Enter, On
  2665. Hotkey, Escape, On
  2666. Hotkey, t, Off
  2667. if(SpeedCheckStatus == 1)
  2668. {
  2669. Send {backspace}
  2670. Send {backspace}
  2671. }
  2672. return
  2673.  
  2674. ~Enter::
  2675. ~NumpadEnter::
  2676. Suspend Permit
  2677. Suspend Off
  2678. Hotkey, t, On
  2679. Hotkey, Enter, Off
  2680. Hotkey, Escape, Off
  2681.  
  2682. if(IsChatOpen() == 1 || IsDialogOpen == 1)
  2683. return
  2684. if(Menu_Overlay || Menu_HP || Menu_AP)
  2685. {
  2686. if Switcher = 6
  2687. {
  2688. IniWrite, %Overlay_size%, Overlay.ini, Status Overlay, Overlay_size
  2689. IniWrite, %Overlay_posx%, Overlay.ini, Status Overlay, Overlay_posx
  2690. IniWrite, %Overlay_posy%, Overlay.ini, Status Overlay, Overlay_posy
  2691.  
  2692. IniWrite, %HP_size%, Overlay.ini, HP Overlay, HP_size
  2693. IniWrite, %HP_posx%, Overlay.ini, HP Overlay, HP_posx
  2694. IniWrite, %HP_posy%, Overlay.ini, HP Overlay, HP_posy
  2695.  
  2696. IniWrite, %AP_size%, Overlay.ini, AP Overlay, AP_size
  2697. IniWrite, %AP_posx%, Overlay.ini, AP Overlay, AP_posx
  2698. IniWrite, %AP_posy%, Overlay.ini, AP Overlay, AP_posy
  2699.  
  2700.  
  2701. TextSetString(boxtext6,"Einstellungen gespeichert")
  2702. TextSetColor(boxtext6,0xFF4DFF55)
  2703. sleep 1000
  2704.  
  2705. Menu_Overlay := 0
  2706. Menu_HP := 0
  2707. Menu_AP := 0
  2708. Loop 6
  2709. {
  2710. BoxSetShown(Box%A_INDex%, false)
  2711. TextSetShown(boxtext%A_index%,false)
  2712. }
  2713. TextSetColor(boxtext6,0x00BFFFFF)
  2714.  
  2715. }
  2716. }
  2717. return
  2718.  
  2719. ~Escape::
  2720. Suspend Permit
  2721. Suspend Off
  2722. SendInput {Escape}
  2723. Hotkey, t, On
  2724. Hotkey, Enter, Off
  2725. Hotkey, Escape, Off
  2726. return
  2727.  
  2728.  
  2729. return
  2730.  
  2731.  
  2732.  
  2733. PlayerInput(text)
  2734. {
  2735. s := A_IsSuspended
  2736. Suspend On
  2737. KeyWait Enter
  2738. SendInput t^a{backspace}%text%
  2739. Input, var, v, {enter}
  2740. SendInput ^a{backspace}{enter}
  2741. if(!s)
  2742. Suspend Off
  2743. return var
  2744. }
  2745.  
  2746. GetPlayerSpeed()
  2747. {
  2748. exe := OpenMemoryfromTitle_("GTA:SA:MP")
  2749. pointer := ReadMemory_(exe, 0xBA18FC)
  2750. speedX := ReadMemory_(exe, pointer+68,"Float")
  2751. speedY := ReadMemory_(exe,pointer+72,"Float")
  2752. speedZ := ReadMemory_(exe, pointer+76,"Float")
  2753. CloseMemory_(exe)
  2754.  
  2755. speed := (((speedX * speedX) + (speedY * speedY) + (speedZ * speedZ))**(1/2))
  2756. speed := speed * 160.9344
  2757. speed := floor(speed)
  2758.  
  2759. return speed
  2760. }
  2761.  
  2762. OpenMemoryfromTitle_(title,right=0x1F0FFF)
  2763. {
  2764. WinGet,PID,PID,%title%
  2765. HWND := DllCall("OpenProcess","Uint",right,"int",0,"int",PID)
  2766. return HWND
  2767. }
  2768.  
  2769. CloseMemory_(hwnd)
  2770. {
  2771. return DllCall("CloseHandle", "int", hwnd)
  2772. }
  2773.  
  2774. ReadMemory_(hwnd,address,datatype="int",length=4,offset=0)
  2775. {
  2776. VarSetCapacity(readvalue,length, 0)
  2777. DllCall("ReadProcessMemory","Uint",hwnd,"Uint",address+offset,"Str",readvalue,"Uint",length,"Uint *",0)
  2778. finalvalue := NumGet(readvalue,0,datatype)
  2779. return finalvalue
  2780. }
  2781.  
  2782. IsPlayerInNoDM(x, y, z)
  2783. {
  2784. result := ""
  2785. if(x<1561.5 && x>1387.8 && y<-1727.6 && y>-1870)
  2786. {
  2787. result := 1
  2788. }
  2789. else if(x>1688.8 && x<1820.8 && y<-1859.5 && y>-1961.2)
  2790. {
  2791. result := 1
  2792. }
  2793. return result
  2794. }
  2795.  
  2796. GetCityByCoords(posX, posY, posZ)
  2797. {
  2798. if (posX >= 685.0) and (posY >= 476.093) and (posZ >= -500.0) and (posX <= 3000.0) and (posY <= 3000.0) and (posZ <= 500.0)
  2799. {
  2800. CityName := "Las Venturas"
  2801. }
  2802. else if (posX >= -3000.0) and (posY >= -742.306) and (posZ >= -500.0) and (posX <= -1270.53) and (posY <= 1530.24) and (posZ <= 500.0)
  2803. {
  2804. CityName := "San Fierro"
  2805. }
  2806. else if (posX >= -1270.53) and (posY >= -402.481) and (posZ >= -500.0) and (posX <= -1038.45) and (posY <= 832.495) and (posZ <= 500.0)
  2807. {
  2808. CityName := "San Fierro"
  2809. }
  2810. else if (posX >= -1038.45) and (posY >= -145.539) and (posZ >= -500.0) and (posX <= -897.546) and (posY <= 376.632) and (posZ <= 500.0)
  2811. {
  2812. CityName := "San Fierro"
  2813. }
  2814. else if (posX >= 480.0) and (posY >= -3000.0) and (posZ >= -500.0) and (posX <= 3000.0) and (posY <= -850.0) and (posZ <= 500.0)
  2815. {
  2816. CityName := "Los Santos"
  2817. }
  2818. else if (posX >= 80.0) and (posY >= -2101.61) and (posZ >= -500.0) and (posX <= 1075.0) and (posY <= -1239.61) and (posZ <= 500.0)
  2819. {
  2820. CityName := "Los Santos"
  2821. }
  2822. else if (posX >= -1213.91) and (posY >= 596.349) and (posZ >= -242.99) and (posX <= -480.539) and (posY <= 1659.68) and (posZ <= 900.0)
  2823. {
  2824. CityName := "Tierra Robada"
  2825. }
  2826. else if (posX >= -1213.91) and (posY >= -768.027) and (posZ >= -242.99) and (posX <= 2997.06) and (posY <= 596.349) and (posZ <= 900.0)
  2827. {
  2828. CityName := "Red County"
  2829. }
  2830. else if (posX >= -1213.91) and (posY >= -2892.97) and (posZ >= -242.99) and (posX <= 44.6147) and (posY <= -768.027) and (posZ <= 900.0)
  2831. {
  2832. CityName := "Flint County"
  2833. }
  2834. else if (posX >= -2997.47) and (posY >= -2892.97) and (posZ >= -242.99) and (posX <= -1213.91) and (posY <= -1115.58) and (posZ <= 900.0)
  2835. {
  2836. CityName := "Whetstone"
  2837. }
  2838. else
  2839. {
  2840. CityName := "Unbekannt"
  2841. }
  2842. return CityName
  2843. }
  2844.  
  2845. GetZoneByCoords(posX, posY, posZ)
  2846. {
  2847. if (posX >= -2667.810) and (posY >= -302.135) and (posZ >= -28.831) and (posX <= -2646.400) and (posY <= -262.320) and (posZ <= 71.169)
  2848. {
  2849. ZoneName := "Avispa Country Club"
  2850. }
  2851. else if (posX >= -1315.420) and (posY >= -405.388) and (posZ >= 15.406) and (posX <= -1264.400) and (posY <= -209.543) and (posZ <= 25.406)
  2852. {
  2853. ZoneName := "Easter Bay Airport"
  2854. }
  2855. else if (posX >= -2550.040) and (posY >= -355.493) and (posZ >= 0.000) and (posX <= -2470.040) and (posY <= -318.493) and (posZ <= 39.700)
  2856. {
  2857. ZoneName := "Avispa Country Club"
  2858. }
  2859. else if (posX >= -1490.330) and (posY >= -209.543) and (posZ >= 15.406) and (posX <= -1264.400) and (posY <= -148.388) and (posZ <= 25.406)
  2860. {
  2861. ZoneName := "Easter Bay Airport"
  2862. }
  2863. else if (posX >= -2395.140) and (posY >= -222.589) and (posZ >= -5.3) and (posX <= -2354.090) and (posY <= -204.792) and (posZ <= 200.000)
  2864. {
  2865. ZoneName := "Garcia"
  2866. }
  2867. else if (posX >= -1632.830) and (posY >= -2263.440) and (posZ >= -3.0) and (posX <= -1601.330) and (posY <= -2231.790) and (posZ <= 200.000)
  2868. {
  2869. ZoneName := "Shady Cabin"
  2870. }
  2871. else if (posX >= 2381.680) and (posY >= -1494.030) and (posZ >= -89.084) and (posX <= 2421.030) and (posY <= -1454.350) and (posZ <= 110.916)
  2872. {
  2873. ZoneName := "East Los Santos"
  2874. }
  2875. else if (posX >= 1236.630) and (posY >= 1163.410) and (posZ >= -89.084) and (posX <= 1277.050) and (posY <= 1203.280) and (posZ <= 110.916)
  2876. {
  2877. ZoneName := "LVA Freight Depot"
  2878. }
  2879. else if (posX >= 1277.050) and (posY >= 1044.690) and (posZ >= -89.084) and (posX <= 1315.350) and (posY <= 1087.630) and (posZ <= 110.916)
  2880. {
  2881. ZoneName := "Blackfield Intersection"
  2882. }
  2883. else if (posX >= -2470.040) and (posY >= -355.493) and (posZ >= 0.000) and (posX <= -2270.040) and (posY <= -318.493) and (posZ <= 46.100)
  2884. {
  2885. ZoneName := "Avispa Country Club"
  2886. }
  2887. else if (posX >= 1252.330) and (posY >= -926.999) and (posZ >= -89.084) and (posX <= 1357.000) and (posY <= -910.170) and (posZ <= 110.916)
  2888. {
  2889. ZoneName := "Temple"
  2890. }
  2891. else if (posX >= 1692.620) and (posY >= -1971.800) and (posZ >= -20.492) and (posX <= 1812.620) and (posY <= -1932.800) and (posZ <= 79.508)
  2892. {
  2893. ZoneName := "Unity Station"
  2894. }
  2895. else if (posX >= 1315.350) and (posY >= 1044.690) and (posZ >= -89.084) and (posX <= 1375.600) and (posY <= 1087.630) and (posZ <= 110.916)
  2896. {
  2897. ZoneName := "LVA Freight Depot"
  2898. }
  2899. else if (posX >= 2581.730) and (posY >= -1454.350) and (posZ >= -89.084) and (posX <= 2632.830) and (posY <= -1393.420) and (posZ <= 110.916)
  2900. {
  2901. ZoneName := "Los Flores"
  2902. }
  2903. else if (posX >= 2437.390) and (posY >= 1858.100) and (posZ >= -39.084) and (posX <= 2495.090) and (posY <= 1970.850) and (posZ <= 60.916)
  2904. {
  2905. ZoneName := "Starfish Casino"
  2906. }
  2907. else if (posX >= -1132.820) and (posY >= -787.391) and (posZ >= 0.000) and (posX <= -956.476) and (posY <= -768.027) and (posZ <= 200.000)
  2908. {
  2909. ZoneName := "Easter Bay Chemicals"
  2910. }
  2911. else if (posX >= 1370.850) and (posY >= -1170.870) and (posZ >= -89.084) and (posX <= 1463.900) and (posY <= -1130.850) and (posZ <= 110.916)
  2912. {
  2913. ZoneName := "Downtown Los Santos"
  2914. }
  2915. else if (posX >= -1620.300) and (posY >= 1176.520) and (posZ >= -4.5) and (posX <= -1580.010) and (posY <= 1274.260) and (posZ <= 200.000)
  2916. {
  2917. ZoneName := "Esplanade East"
  2918. }
  2919. else if (posX >= 787.461) and (posY >= -1410.930) and (posZ >= -34.126) and (posX <= 866.009) and (posY <= -1310.210) and (posZ <= 65.874)
  2920. {
  2921. ZoneName := "Market Station"
  2922. }
  2923. else if (posX >= 2811.250) and (posY >= 1229.590) and (posZ >= -39.594) and (posX <= 2861.250) and (posY <= 1407.590) and (posZ <= 60.406)
  2924. {
  2925. ZoneName := "Linden Station"
  2926. }
  2927. else if (posX >= 1582.440) and (posY >= 347.457) and (posZ >= 0.000) and (posX <= 1664.620) and (posY <= 401.750) and (posZ <= 200.000)
  2928. {
  2929. ZoneName := "Montgomery Intersection"
  2930. }
  2931. else if (posX >= 2759.250) and (posY >= 296.501) and (posZ >= 0.000) and (posX <= 2774.250) and (posY <= 594.757) and (posZ <= 200.000)
  2932. {
  2933. ZoneName := "Frederick Bridge"
  2934. }
  2935. else if (posX >= 1377.480) and (posY >= 2600.430) and (posZ >= -21.926) and (posX <= 1492.450) and (posY <= 2687.360) and (posZ <= 78.074)
  2936. {
  2937. ZoneName := "Yellow Bell Station"
  2938. }
  2939. else if (posX >= 1507.510) and (posY >= -1385.210) and (posZ >= 110.916) and (posX <= 1582.550) and (posY <= -1325.310) and (posZ <= 335.916)
  2940. {
  2941. ZoneName := "Downtown Los Santos"
  2942. }
  2943. else if (posX >= 2185.330) and (posY >= -1210.740) and (posZ >= -89.084) and (posX <= 2281.450) and (posY <= -1154.590) and (posZ <= 110.916)
  2944. {
  2945. ZoneName := "Jefferson"
  2946. }
  2947. else if (posX >= 1318.130) and (posY >= -910.170) and (posZ >= -89.084) and (posX <= 1357.000) and (posY <= -768.027) and (posZ <= 110.916)
  2948. {
  2949. ZoneName := "Mulholland"
  2950. }
  2951. else if (posX >= -2361.510) and (posY >= -417.199) and (posZ >= 0.000) and (posX <= -2270.040) and (posY <= -355.493) and (posZ <= 200.000)
  2952. {
  2953. ZoneName := "Avispa Country Club"
  2954. }
  2955. else if (posX >= 1996.910) and (posY >= -1449.670) and (posZ >= -89.084) and (posX <= 2056.860) and (posY <= -1350.720) and (posZ <= 110.916)
  2956. {
  2957. ZoneName := "Jefferson"
  2958. }
  2959. else if (posX >= 1236.630) and (posY >= 2142.860) and (posZ >= -89.084) and (posX <= 1297.470) and (posY <= 2243.230) and (posZ <= 110.916)
  2960. {
  2961. ZoneName := "Julius Thruway West"
  2962. }
  2963. else if (posX >= 2124.660) and (posY >= -1494.030) and (posZ >= -89.084) and (posX <= 2266.210) and (posY <= -1449.670) and (posZ <= 110.916)
  2964. {
  2965. ZoneName := "Jefferson"
  2966. }
  2967. else if (posX >= 1848.400) and (posY >= 2478.490) and (posZ >= -89.084) and (posX <= 1938.800) and (posY <= 2553.490) and (posZ <= 110.916)
  2968. {
  2969. ZoneName := "Julius Thruway North"
  2970. }
  2971. else if (posX >= 422.680) and (posY >= -1570.200) and (posZ >= -89.084) and (posX <= 466.223) and (posY <= -1406.050) and (posZ <= 110.916)
  2972. {
  2973. ZoneName := "Rodeo"
  2974. }
  2975. else if (posX >= -2007.830) and (posY >= 56.306) and (posZ >= 0.000) and (posX <= -1922.000) and (posY <= 224.782) and (posZ <= 100.000)
  2976. {
  2977. ZoneName := "Cranberry Station"
  2978. }
  2979. else if (posX >= 1391.050) and (posY >= -1026.330) and (posZ >= -89.084) and (posX <= 1463.900) and (posY <= -926.999) and (posZ <= 110.916)
  2980. {
  2981. ZoneName := "Downtown Los Santos"
  2982. }
  2983. else if (posX >= 1704.590) and (posY >= 2243.230) and (posZ >= -89.084) and (posX <= 1777.390) and (posY <= 2342.830) and (posZ <= 110.916)
  2984. {
  2985. ZoneName := "Redsands West"
  2986. }
  2987. else if (posX >= 1758.900) and (posY >= -1722.260) and (posZ >= -89.084) and (posX <= 1812.620) and (posY <= -1577.590) and (posZ <= 110.916)
  2988. {
  2989. ZoneName := "Little Mexico"
  2990. }
  2991. else if (posX >= 1375.600) and (posY >= 823.228) and (posZ >= -89.084) and (posX <= 1457.390) and (posY <= 919.447) and (posZ <= 110.916)
  2992. {
  2993. ZoneName := "Blackfield Intersection"
  2994. }
  2995. else if (posX >= 1974.630) and (posY >= -2394.330) and (posZ >= -39.084) and (posX <= 2089.000) and (posY <= -2256.590) and (posZ <= 60.916)
  2996. {
  2997. ZoneName := "Los Santos International"
  2998. }
  2999. else if (posX >= -399.633) and (posY >= -1075.520) and (posZ >= -1.489) and (posX <= -319.033) and (posY <= -977.516) and (posZ <= 198.511)
  3000. {
  3001. ZoneName := "Beacon Hill"
  3002. }
  3003. else if (posX >= 334.503) and (posY >= -1501.950) and (posZ >= -89.084) and (posX <= 422.680) and (posY <= -1406.050) and (posZ <= 110.916)
  3004. {
  3005. ZoneName := "Rodeo"
  3006. }
  3007. else if (posX >= 225.165) and (posY >= -1369.620) and (posZ >= -89.084) and (posX <= 334.503) and (posY <= -1292.070) and (posZ <= 110.916)
  3008. {
  3009. ZoneName := "Richman"
  3010. }
  3011. else if (posX >= 1724.760) and (posY >= -1250.900) and (posZ >= -89.084) and (posX <= 1812.620) and (posY <= -1150.870) and (posZ <= 110.916)
  3012. {
  3013. ZoneName := "Downtown Los Santos"
  3014. }
  3015. else if (posX >= 2027.400) and (posY >= 1703.230) and (posZ >= -89.084) and (posX <= 2137.400) and (posY <= 1783.230) and (posZ <= 110.916)
  3016. {
  3017. ZoneName := "The Strip"
  3018. }
  3019. else if (posX >= 1378.330) and (posY >= -1130.850) and (posZ >= -89.084) and (posX <= 1463.900) and (posY <= -1026.330) and (posZ <= 110.916)
  3020. {
  3021. ZoneName := "Downtown Los Santos"
  3022. }
  3023. else if (posX >= 1197.390) and (posY >= 1044.690) and (posZ >= -89.084) and (posX <= 1277.050) and (posY <= 1163.390) and (posZ <= 110.916)
  3024. {
  3025. ZoneName := "Blackfield Intersection"
  3026. }
  3027. else if (posX >= 1073.220) and (posY >= -1842.270) and (posZ >= -89.084) and (posX <= 1323.900) and (posY <= -1804.210) and (posZ <= 110.916)
  3028. {
  3029. ZoneName := "Conference Center"
  3030. }
  3031. else if (posX >= 1451.400) and (posY >= 347.457) and (posZ >= -6.1) and (posX <= 1582.440) and (posY <= 420.802) and (posZ <= 200.000)
  3032. {
  3033. ZoneName := "Montgomery"
  3034. }
  3035. else if (posX >= -2270.040) and (posY >= -430.276) and (posZ >= -1.2) and (posX <= -2178.690) and (posY <= -324.114) and (posZ <= 200.000)
  3036. {
  3037. ZoneName := "Foster Valley"
  3038. }
  3039. else if (posX >= 1325.600) and (posY >= 596.349) and (posZ >= -89.084) and (posX <= 1375.600) and (posY <= 795.010) and (posZ <= 110.916)
  3040. {
  3041. ZoneName := "Blackfield Chapel"
  3042. }
  3043. else if (posX >= 2051.630) and (posY >= -2597.260) and (posZ >= -39.084) and (posX <= 2152.450) and (posY <= -2394.330) and (posZ <= 60.916)
  3044. {
  3045. ZoneName := "Los Santos International"
  3046. }
  3047. else if (posX >= 1096.470) and (posY >= -910.170) and (posZ >= -89.084) and (posX <= 1169.130) and (posY <= -768.027) and (posZ <= 110.916)
  3048. {
  3049. ZoneName := "Mulholland"
  3050. }
  3051. else if (posX >= 1457.460) and (posY >= 2723.230) and (posZ >= -89.084) and (posX <= 1534.560) and (posY <= 2863.230) and (posZ <= 110.916)
  3052. {
  3053. ZoneName := "Yellow Bell Gol Course"
  3054. }
  3055. else if (posX >= 2027.400) and (posY >= 1783.230) and (posZ >= -89.084) and (posX <= 2162.390) and (posY <= 1863.230) and (posZ <= 110.916)
  3056. {
  3057. ZoneName := "The Strip"
  3058. }
  3059. else if (posX >= 2056.860) and (posY >= -1210.740) and (posZ >= -89.084) and (posX <= 2185.330) and (posY <= -1126.320) and (posZ <= 110.916)
  3060. {
  3061. ZoneName := "Jefferson"
  3062. }
  3063. else if (posX >= 952.604) and (posY >= -937.184) and (posZ >= -89.084) and (posX <= 1096.470) and (posY <= -860.619) and (posZ <= 110.916)
  3064. {
  3065. ZoneName := "Mulholland"
  3066. }
  3067. else if (posX >= -1372.140) and (posY >= 2498.520) and (posZ >= 0.000) and (posX <= -1277.590) and (posY <= 2615.350) and (posZ <= 200.000)
  3068. {
  3069. ZoneName := "Aldea Malvada"
  3070. }
  3071. else if (posX >= 2126.860) and (posY >= -1126.320) and (posZ >= -89.084) and (posX <= 2185.330) and (posY <= -934.489) and (posZ <= 110.916)
  3072. {
  3073. ZoneName := "Las Colinas"
  3074. }
  3075. else if (posX >= 1994.330) and (posY >= -1100.820) and (posZ >= -89.084) and (posX <= 2056.860) and (posY <= -920.815) and (posZ <= 110.916)
  3076. {
  3077. ZoneName := "Las Colinas"
  3078. }
  3079. else if (posX >= 647.557) and (posY >= -954.662) and (posZ >= -89.084) and (posX <= 768.694) and (posY <= -860.619) and (posZ <= 110.916)
  3080. {
  3081. ZoneName := "Richman"
  3082. }
  3083. else if (posX >= 1277.050) and (posY >= 1087.630) and (posZ >= -89.084) and (posX <= 1375.600) and (posY <= 1203.280) and (posZ <= 110.916)
  3084. {
  3085. ZoneName := "LVA Freight Depot"
  3086. }
  3087. else if (posX >= 1377.390) and (posY >= 2433.230) and (posZ >= -89.084) and (posX <= 1534.560) and (posY <= 2507.230) and (posZ <= 110.916)
  3088. {
  3089. ZoneName := "Julius Thruway North"
  3090. }
  3091. else if (posX >= 2201.820) and (posY >= -2095.000) and (posZ >= -89.084) and (posX <= 2324.000) and (posY <= -1989.900) and (posZ <= 110.916)
  3092. {
  3093. ZoneName := "Willowfield"
  3094. }
  3095. else if (posX >= 1704.590) and (posY >= 2342.830) and (posZ >= -89.084) and (posX <= 1848.400) and (posY <= 2433.230) and (posZ <= 110.916)
  3096. {
  3097. ZoneName := "Julius Thruway North"
  3098. }
  3099. else if (posX >= 1252.330) and (posY >= -1130.850) and (posZ >= -89.084) and (posX <= 1378.330) and (posY <= -1026.330) and (posZ <= 110.916)
  3100. {
  3101. ZoneName := "Temple"
  3102. }
  3103. else if (posX >= 1701.900) and (posY >= -1842.270) and (posZ >= -89.084) and (posX <= 1812.620) and (posY <= -1722.260) and (posZ <= 110.916)
  3104. {
  3105. ZoneName := "Little Mexico"
  3106. }
  3107. else if (posX >= -2411.220) and (posY >= 373.539) and (posZ >= 0.000) and (posX <= -2253.540) and (posY <= 458.411) and (posZ <= 200.000)
  3108. {
  3109. ZoneName := "Queens"
  3110. }
  3111. else if (posX >= 1515.810) and (posY >= 1586.400) and (posZ >= -12.500) and (posX <= 1729.950) and (posY <= 1714.560) and (posZ <= 87.500)
  3112. {
  3113. ZoneName := "Las Venturas Airport"
  3114. }
  3115. else if (posX >= 225.165) and (posY >= -1292.070) and (posZ >= -89.084) and (posX <= 466.223) and (posY <= -1235.070) and (posZ <= 110.916)
  3116. {
  3117. ZoneName := "Richman"
  3118. }
  3119. else if (posX >= 1252.330) and (posY >= -1026.330) and (posZ >= -89.084) and (posX <= 1391.050) and (posY <= -926.999) and (posZ <= 110.916)
  3120. {
  3121. ZoneName := "Temple"
  3122. }
  3123. else if (posX >= 2266.260) and (posY >= -1494.030) and (posZ >= -89.084) and (posX <= 2381.680) and (posY <= -1372.040) and (posZ <= 110.916)
  3124. {
  3125. ZoneName := "East Los Santos"
  3126. }
  3127. else if (posX >= 2623.180) and (posY >= 943.235) and (posZ >= -89.084) and (posX <= 2749.900) and (posY <= 1055.960) and (posZ <= 110.916)
  3128. {
  3129. ZoneName := "Julius Thruway East"
  3130. }
  3131. else if (posX >= 2541.700) and (posY >= -1941.400) and (posZ >= -89.084) and (posX <= 2703.580) and (posY <= -1852.870) and (posZ <= 110.916)
  3132. {
  3133. ZoneName := "Willowfield"
  3134. }
  3135. else if (posX >= 2056.860) and (posY >= -1126.320) and (posZ >= -89.084) and (posX <= 2126.860) and (posY <= -920.815) and (posZ <= 110.916)
  3136. {
  3137. ZoneName := "Las Colinas"
  3138. }
  3139. else if (posX >= 2625.160) and (posY >= 2202.760) and (posZ >= -89.084) and (posX <= 2685.160) and (posY <= 2442.550) and (posZ <= 110.916)
  3140. {
  3141. ZoneName := "Julius Thruway East"
  3142. }
  3143. else if (posX >= 225.165) and (posY >= -1501.950) and (posZ >= -89.084) and (posX <= 334.503) and (posY <= -1369.620) and (posZ <= 110.916)
  3144. {
  3145. ZoneName := "Rodeo"
  3146. }
  3147. else if (posX >= -365.167) and (posY >= 2123.010) and (posZ >= -3.0) and (posX <= -208.570) and (posY <= 2217.680) and (posZ <= 200.000)
  3148. {
  3149. ZoneName := "Las Brujas"
  3150. }
  3151. else if (posX >= 2536.430) and (posY >= 2442.550) and (posZ >= -89.084) and (posX <= 2685.160) and (posY <= 2542.550) and (posZ <= 110.916)
  3152. {
  3153. ZoneName := "Julius Thruway East"
  3154. }
  3155. else if (posX >= 334.503) and (posY >= -1406.050) and (posZ >= -89.084) and (posX <= 466.223) and (posY <= -1292.070) and (posZ <= 110.916)
  3156. {
  3157. ZoneName := "Rodeo"
  3158. }
  3159. else if (posX >= 647.557) and (posY >= -1227.280) and (posZ >= -89.084) and (posX <= 787.461) and (posY <= -1118.280) and (posZ <= 110.916)
  3160. {
  3161. ZoneName := "Vinewood"
  3162. }
  3163. else if (posX >= 422.680) and (posY >= -1684.650) and (posZ >= -89.084) and (posX <= 558.099) and (posY <= -1570.200) and (posZ <= 110.916)
  3164. {
  3165. ZoneName := "Rodeo"
  3166. }
  3167. else if (posX >= 2498.210) and (posY >= 2542.550) and (posZ >= -89.084) and (posX <= 2685.160) and (posY <= 2626.550) and (posZ <= 110.916)
  3168. {
  3169. ZoneName := "Julius Thruway North"
  3170. }
  3171. else if (posX >= 1724.760) and (posY >= -1430.870) and (posZ >= -89.084) and (posX <= 1812.620) and (posY <= -1250.900) and (posZ <= 110.916)
  3172. {
  3173. ZoneName := "Downtown Los Santos"
  3174. }
  3175. else if (posX >= 225.165) and (posY >= -1684.650) and (posZ >= -89.084) and (posX <= 312.803) and (posY <= -1501.950) and (posZ <= 110.916)
  3176. {
  3177. ZoneName := "Rodeo"
  3178. }
  3179. else if (posX >= 2056.860) and (posY >= -1449.670) and (posZ >= -89.084) and (posX <= 2266.210) and (posY <= -1372.040) and (posZ <= 110.916)
  3180. {
  3181. ZoneName := "Jefferson"
  3182. }
  3183. else if (posX >= 603.035) and (posY >= 264.312) and (posZ >= 0.000) and (posX <= 761.994) and (posY <= 366.572) and (posZ <= 200.000)
  3184. {
  3185. ZoneName := "Hampton Barns"
  3186. }
  3187. else if (posX >= 1096.470) and (posY >= -1130.840) and (posZ >= -89.084) and (posX <= 1252.330) and (posY <= -1026.330) and (posZ <= 110.916)
  3188. {
  3189. ZoneName := "Temple"
  3190. }
  3191. else if (posX >= -1087.930) and (posY >= 855.370) and (posZ >= -89.084) and (posX <= -961.950) and (posY <= 986.281) and (posZ <= 110.916)
  3192. {
  3193. ZoneName := "Kincaid Bridge"
  3194. }
  3195. else if (posX >= 1046.150) and (posY >= -1722.260) and (posZ >= -89.084) and (posX <= 1161.520) and (posY <= -1577.590) and (posZ <= 110.916)
  3196. {
  3197. ZoneName := "Verona Beach"
  3198. }
  3199. else if (posX >= 1323.900) and (posY >= -1722.260) and (posZ >= -89.084) and (posX <= 1440.900) and (posY <= -1577.590) and (posZ <= 110.916)
  3200. {
  3201. ZoneName := "Commerce"
  3202. }
  3203. else if (posX >= 1357.000) and (posY >= -926.999) and (posZ >= -89.084) and (posX <= 1463.900) and (posY <= -768.027) and (posZ <= 110.916)
  3204. {
  3205. ZoneName := "Mulholland"
  3206. }
  3207. else if (posX >= 466.223) and (posY >= -1570.200) and (posZ >= -89.084) and (posX <= 558.099) and (posY <= -1385.070) and (posZ <= 110.916)
  3208. {
  3209. ZoneName := "Rodeo"
  3210. }
  3211. else if (posX >= 911.802) and (posY >= -860.619) and (posZ >= -89.084) and (posX <= 1096.470) and (posY <= -768.027) and (posZ <= 110.916)
  3212. {
  3213. ZoneName := "Mulholland"
  3214. }
  3215. else if (posX >= 768.694) and (posY >= -954.662) and (posZ >= -89.084) and (posX <= 952.604) and (posY <= -860.619) and (posZ <= 110.916)
  3216. {
  3217. ZoneName := "Mulholland"
  3218. }
  3219. else if (posX >= 2377.390) and (posY >= 788.894) and (posZ >= -89.084) and (posX <= 2537.390) and (posY <= 897.901) and (posZ <= 110.916)
  3220. {
  3221. ZoneName := "Julius Thruway South"
  3222. }
  3223. else if (posX >= 1812.620) and (posY >= -1852.870) and (posZ >= -89.084) and (posX <= 1971.660) and (posY <= -1742.310) and (posZ <= 110.916)
  3224. {
  3225. ZoneName := "Idlewood"
  3226. }
  3227. else if (posX >= 2089.000) and (posY >= -2394.330) and (posZ >= -89.084) and (posX <= 2201.820) and (posY <= -2235.840) and (posZ <= 110.916)
  3228. {
  3229. ZoneName := "Ocean Docks"
  3230. }
  3231. else if (posX >= 1370.850) and (posY >= -1577.590) and (posZ >= -89.084) and (posX <= 1463.900) and (posY <= -1384.950) and (posZ <= 110.916)
  3232. {
  3233. ZoneName := "Commerce"
  3234. }
  3235. else if (posX >= 2121.400) and (posY >= 2508.230) and (posZ >= -89.084) and (posX <= 2237.400) and (posY <= 2663.170) and (posZ <= 110.916)
  3236. {
  3237. ZoneName := "Julius Thruway North"
  3238. }
  3239. else if (posX >= 1096.470) and (posY >= -1026.330) and (posZ >= -89.084) and (posX <= 1252.330) and (posY <= -910.170) and (posZ <= 110.916)
  3240. {
  3241. ZoneName := "Temple"
  3242. }
  3243. else if (posX >= 1812.620) and (posY >= -1449.670) and (posZ >= -89.084) and (posX <= 1996.910) and (posY <= -1350.720) and (posZ <= 110.916)
  3244. {
  3245. ZoneName := "Glen Park"
  3246. }
  3247. else if (posX >= -1242.980) and (posY >= -50.096) and (posZ >= 0.000) and (posX <= -1213.910) and (posY <= 578.396) and (posZ <= 200.000)
  3248. {
  3249. ZoneName := "Easter Bay Airport"
  3250. }
  3251. else if (posX >= -222.179) and (posY >= 293.324) and (posZ >= 0.000) and (posX <= -122.126) and (posY <= 476.465) and (posZ <= 200.000)
  3252. {
  3253. ZoneName := "Martin Bridge"
  3254. }
  3255. else if (posX >= 2106.700) and (posY >= 1863.230) and (posZ >= -89.084) and (posX <= 2162.390) and (posY <= 2202.760) and (posZ <= 110.916)
  3256. {
  3257. ZoneName := "The Strip"
  3258. }
  3259. else if (posX >= 2541.700) and (posY >= -2059.230) and (posZ >= -89.084) and (posX <= 2703.580) and (posY <= -1941.400) and (posZ <= 110.916)
  3260. {
  3261. ZoneName := "Willowfield"
  3262. }
  3263. else if (posX >= 807.922) and (posY >= -1577.590) and (posZ >= -89.084) and (posX <= 926.922) and (posY <= -1416.250) and (posZ <= 110.916)
  3264. {
  3265. ZoneName := "Marina"
  3266. }
  3267. else if (posX >= 1457.370) and (posY >= 1143.210) and (posZ >= -89.084) and (posX <= 1777.400) and (posY <= 1203.280) and (posZ <= 110.916)
  3268. {
  3269. ZoneName := "Las Venturas Airport"
  3270. }
  3271. else if (posX >= 1812.620) and (posY >= -1742.310) and (posZ >= -89.084) and (posX <= 1951.660) and (posY <= -1602.310) and (posZ <= 110.916)
  3272. {
  3273. ZoneName := "Idlewood"
  3274. }
  3275. else if (posX >= -1580.010) and (posY >= 1025.980) and (posZ >= -6.1) and (posX <= -1499.890) and (posY <= 1274.260) and (posZ <= 200.000)
  3276. {
  3277. ZoneName := "Esplanade East"
  3278. }
  3279. else if (posX >= 1370.850) and (posY >= -1384.950) and (posZ >= -89.084) and (posX <= 1463.900) and (posY <= -1170.870) and (posZ <= 110.916)
  3280. {
  3281. ZoneName := "Downtown Los Santos"
  3282. }
  3283. else if (posX >= 1664.620) and (posY >= 401.750) and (posZ >= 0.000) and (posX <= 1785.140) and (posY <= 567.203) and (posZ <= 200.000)
  3284. {
  3285. ZoneName := "The Mako Span"
  3286. }
  3287. else if (posX >= 312.803) and (posY >= -1684.650) and (posZ >= -89.084) and (posX <= 422.680) and (posY <= -1501.950) and (posZ <= 110.916)
  3288. {
  3289. ZoneName := "Rodeo"
  3290. }
  3291. else if (posX >= 1440.900) and (posY >= -1722.260) and (posZ >= -89.084) and (posX <= 1583.500) and (posY <= -1577.590) and (posZ <= 110.916)
  3292. {
  3293. ZoneName := "Pershing Square"
  3294. }
  3295. else if (posX >= 687.802) and (posY >= -860.619) and (posZ >= -89.084) and (posX <= 911.802) and (posY <= -768.027) and (posZ <= 110.916)
  3296. {
  3297. ZoneName := "Mulholland"
  3298. }
  3299. else if (posX >= -2741.070) and (posY >= 1490.470) and (posZ >= -6.1) and (posX <= -2616.400) and (posY <= 1659.680) and (posZ <= 200.000)
  3300. {
  3301. ZoneName := "Gant Bridge"
  3302. }
  3303. else if (posX >= 2185.330) and (posY >= -1154.590) and (posZ >= -89.084) and (posX <= 2281.450) and (posY <= -934.489) and (posZ <= 110.916)
  3304. {
  3305. ZoneName := "Las Colinas"
  3306. }
  3307. else if (posX >= 1169.130) and (posY >= -910.170) and (posZ >= -89.084) and (posX <= 1318.130) and (posY <= -768.027) and (posZ <= 110.916)
  3308. {
  3309. ZoneName := "Mulholland"
  3310. }
  3311. else if (posX >= 1938.800) and (posY >= 2508.230) and (posZ >= -89.084) and (posX <= 2121.400) and (posY <= 2624.230) and (posZ <= 110.916)
  3312. {
  3313. ZoneName := "Julius Thruway North"
  3314. }
  3315. else if (posX >= 1667.960) and (posY >= -1577.590) and (posZ >= -89.084) and (posX <= 1812.620) and (posY <= -1430.870) and (posZ <= 110.916)
  3316. {
  3317. ZoneName := "Commerce"
  3318. }
  3319. else if (posX >= 72.648) and (posY >= -1544.170) and (posZ >= -89.084) and (posX <= 225.165) and (posY <= -1404.970) and (posZ <= 110.916)
  3320. {
  3321. ZoneName := "Rodeo"
  3322. }
  3323. else if (posX >= 2536.430) and (posY >= 2202.760) and (posZ >= -89.084) and (posX <= 2625.160) and (posY <= 2442.550) and (posZ <= 110.916)
  3324. {
  3325. ZoneName := "Roca Escalante"
  3326. }
  3327. else if (posX >= 72.648) and (posY >= -1684.650) and (posZ >= -89.084) and (posX <= 225.165) and (posY <= -1544.170) and (posZ <= 110.916)
  3328. {
  3329. ZoneName := "Rodeo"
  3330. }
  3331. else if (posX >= 952.663) and (posY >= -1310.210) and (posZ >= -89.084) and (posX <= 1072.660) and (posY <= -1130.850) and (posZ <= 110.916)
  3332. {
  3333. ZoneName := "Market"
  3334. }
  3335. else if (posX >= 2632.740) and (posY >= -1135.040) and (posZ >= -89.084) and (posX <= 2747.740) and (posY <= -945.035) and (posZ <= 110.916)
  3336. {
  3337. ZoneName := "Las Colinas"
  3338. }
  3339. else if (posX >= 861.085) and (posY >= -674.885) and (posZ >= -89.084) and (posX <= 1156.550) and (posY <= -600.896) and (posZ <= 110.916)
  3340. {
  3341. ZoneName := "Mulholland"
  3342. }
  3343. else if (posX >= -2253.540) and (posY >= 373.539) and (posZ >= -9.1) and (posX <= -1993.280) and (posY <= 458.411) and (posZ <= 200.000)
  3344. {
  3345. ZoneName := "King's"
  3346. }
  3347. else if (posX >= 1848.400) and (posY >= 2342.830) and (posZ >= -89.084) and (posX <= 2011.940) and (posY <= 2478.490) and (posZ <= 110.916)
  3348. {
  3349. ZoneName := "Redsands East"
  3350. }
  3351. else if (posX >= -1580.010) and (posY >= 744.267) and (posZ >= -6.1) and (posX <= -1499.890) and (posY <= 1025.980) and (posZ <= 200.000)
  3352. {
  3353. ZoneName := "Downtown"
  3354. }
  3355. else if (posX >= 1046.150) and (posY >= -1804.210) and (posZ >= -89.084) and (posX <= 1323.900) and (posY <= -1722.260) and (posZ <= 110.916)
  3356. {
  3357. ZoneName := "Conference Center"
  3358. }
  3359. else if (posX >= 647.557) and (posY >= -1118.280) and (posZ >= -89.084) and (posX <= 787.461) and (posY <= -954.662) and (posZ <= 110.916)
  3360. {
  3361. ZoneName := "Richman"
  3362. }
  3363. else if (posX >= -2994.490) and (posY >= 277.411) and (posZ >= -9.1) and (posX <= -2867.850) and (posY <= 458.411) and (posZ <= 200.000)
  3364. {
  3365. ZoneName := "Ocean Flats"
  3366. }
  3367. else if (posX >= 964.391) and (posY >= 930.890) and (posZ >= -89.084) and (posX <= 1166.530) and (posY <= 1044.690) and (posZ <= 110.916)
  3368. {
  3369. ZoneName := "Greenglass College"
  3370. }
  3371. else if (posX >= 1812.620) and (posY >= -1100.820) and (posZ >= -89.084) and (posX <= 1994.330) and (posY <= -973.380) and (posZ <= 110.916)
  3372. {
  3373. ZoneName := "Glen Park"
  3374. }
  3375. else if (posX >= 1375.600) and (posY >= 919.447) and (posZ >= -89.084) and (posX <= 1457.370) and (posY <= 1203.280) and (posZ <= 110.916)
  3376. {
  3377. ZoneName := "LVA Freight Depot"
  3378. }
  3379. else if (posX >= -405.770) and (posY >= 1712.860) and (posZ >= -3.0) and (posX <= -276.719) and (posY <= 1892.750) and (posZ <= 200.000)
  3380. {
  3381. ZoneName := "Regular Tom"
  3382. }
  3383. else if (posX >= 1161.520) and (posY >= -1722.260) and (posZ >= -89.084) and (posX <= 1323.900) and (posY <= -1577.590) and (posZ <= 110.916)
  3384. {
  3385. ZoneName := "Verona Beach"
  3386. }
  3387. else if (posX >= 2281.450) and (posY >= -1372.040) and (posZ >= -89.084) and (posX <= 2381.680) and (posY <= -1135.040) and (posZ <= 110.916)
  3388. {
  3389. ZoneName := "East Los Santos"
  3390. }
  3391. else if (posX >= 2137.400) and (posY >= 1703.230) and (posZ >= -89.084) and (posX <= 2437.390) and (posY <= 1783.230) and (posZ <= 110.916)
  3392. {
  3393. ZoneName := "Caligula's Palace"
  3394. }
  3395. else if (posX >= 1951.660) and (posY >= -1742.310) and (posZ >= -89.084) and (posX <= 2124.660) and (posY <= -1602.310) and (posZ <= 110.916)
  3396. {
  3397. ZoneName := "Idlewood"
  3398. }
  3399. else if (posX >= 2624.400) and (posY >= 1383.230) and (posZ >= -89.084) and (posX <= 2685.160) and (posY <= 1783.230) and (posZ <= 110.916)
  3400. {
  3401. ZoneName := "Pilgrim"
  3402. }
  3403. else if (posX >= 2124.660) and (posY >= -1742.310) and (posZ >= -89.084) and (posX <= 2222.560) and (posY <= -1494.030) and (posZ <= 110.916)
  3404. {
  3405. ZoneName := "Idlewood"
  3406. }
  3407. else if (posX >= -2533.040) and (posY >= 458.411) and (posZ >= 0.000) and (posX <= -2329.310) and (posY <= 578.396) and (posZ <= 200.000)
  3408. {
  3409. ZoneName := "Queens"
  3410. }
  3411. else if (posX >= -1871.720) and (posY >= 1176.420) and (posZ >= -4.5) and (posX <= -1620.300) and (posY <= 1274.260) and (posZ <= 200.000)
  3412. {
  3413. ZoneName := "Downtown"
  3414. }
  3415. else if (posX >= 1583.500) and (posY >= -1722.260) and (posZ >= -89.084) and (posX <= 1758.900) and (posY <= -1577.590) and (posZ <= 110.916)
  3416. {
  3417. ZoneName := "Commerce"
  3418. }
  3419. else if (posX >= 2381.680) and (posY >= -1454.350) and (posZ >= -89.084) and (posX <= 2462.130) and (posY <= -1135.040) and (posZ <= 110.916)
  3420. {
  3421. ZoneName := "East Los Santos"
  3422. }
  3423. else if (posX >= 647.712) and (posY >= -1577.590) and (posZ >= -89.084) and (posX <= 807.922) and (posY <= -1416.250) and (posZ <= 110.916)
  3424. {
  3425. ZoneName := "Marina"
  3426. }
  3427. else if (posX >= 72.648) and (posY >= -1404.970) and (posZ >= -89.084) and (posX <= 225.165) and (posY <= -1235.070) and (posZ <= 110.916)
  3428. {
  3429. ZoneName := "Richman"
  3430. }
  3431. else if (posX >= 647.712) and (posY >= -1416.250) and (posZ >= -89.084) and (posX <= 787.461) and (posY <= -1227.280) and (posZ <= 110.916)
  3432. {
  3433. ZoneName := "Vinewood"
  3434. }
  3435. else if (posX >= 2222.560) and (posY >= -1628.530) and (posZ >= -89.084) and (posX <= 2421.030) and (posY <= -1494.030) and (posZ <= 110.916)
  3436. {
  3437. ZoneName := "East Los Santos"
  3438. }
  3439. else if (posX >= 558.099) and (posY >= -1684.650) and (posZ >= -89.084) and (posX <= 647.522) and (posY <= -1384.930) and (posZ <= 110.916)
  3440. {
  3441. ZoneName := "Rodeo"
  3442. }
  3443. else if (posX >= -1709.710) and (posY >= -833.034) and (posZ >= -1.5) and (posX <= -1446.010) and (posY <= -730.118) and (posZ <= 200.000)
  3444. {
  3445. ZoneName := "Easter Tunnel"
  3446. }
  3447. else if (posX >= 466.223) and (posY >= -1385.070) and (posZ >= -89.084) and (posX <= 647.522) and (posY <= -1235.070) and (posZ <= 110.916)
  3448. {
  3449. ZoneName := "Rodeo"
  3450. }
  3451. else if (posX >= 1817.390) and (posY >= 2202.760) and (posZ >= -89.084) and (posX <= 2011.940) and (posY <= 2342.830) and (posZ <= 110.916)
  3452. {
  3453. ZoneName := "Redsands East"
  3454. }
  3455. else if (posX >= 2162.390) and (posY >= 1783.230) and (posZ >= -89.084) and (posX <= 2437.390) and (posY <= 1883.230) and (posZ <= 110.916)
  3456. {
  3457. ZoneName := "The Clown's Pocket"
  3458. }
  3459. else if (posX >= 1971.660) and (posY >= -1852.870) and (posZ >= -89.084) and (posX <= 2222.560) and (posY <= -1742.310) and (posZ <= 110.916)
  3460. {
  3461. ZoneName := "Idlewood"
  3462. }
  3463. else if (posX >= 1546.650) and (posY >= 208.164) and (posZ >= 0.000) and (posX <= 1745.830) and (posY <= 347.457) and (posZ <= 200.000)
  3464. {
  3465. ZoneName := "Montgomery Intersection"
  3466. }
  3467. else if (posX >= 2089.000) and (posY >= -2235.840) and (posZ >= -89.084) and (posX <= 2201.820) and (posY <= -1989.900) and (posZ <= 110.916)
  3468. {
  3469. ZoneName := "Willowfield"
  3470. }
  3471. else if (posX >= 952.663) and (posY >= -1130.840) and (posZ >= -89.084) and (posX <= 1096.470) and (posY <= -937.184) and (posZ <= 110.916)
  3472. {
  3473. ZoneName := "Temple"
  3474. }
  3475. else if (posX >= 1848.400) and (posY >= 2553.490) and (posZ >= -89.084) and (posX <= 1938.800) and (posY <= 2863.230) and (posZ <= 110.916)
  3476. {
  3477. ZoneName := "Prickle Pine"
  3478. }
  3479. else if (posX >= 1400.970) and (posY >= -2669.260) and (posZ >= -39.084) and (posX <= 2189.820) and (posY <= -2597.260) and (posZ <= 60.916)
  3480. {
  3481. ZoneName := "Los Santos International"
  3482. }
  3483. else if (posX >= -1213.910) and (posY >= 950.022) and (posZ >= -89.084) and (posX <= -1087.930) and (posY <= 1178.930) and (posZ <= 110.916)
  3484. {
  3485. ZoneName := "Garver Bridge"
  3486. }
  3487. else if (posX >= -1339.890) and (posY >= 828.129) and (posZ >= -89.084) and (posX <= -1213.910) and (posY <= 1057.040) and (posZ <= 110.916)
  3488. {
  3489. ZoneName := "Garver Bridge"
  3490. }
  3491. else if (posX >= -1339.890) and (posY >= 599.218) and (posZ >= -89.084) and (posX <= -1213.910) and (posY <= 828.129) and (posZ <= 110.916)
  3492. {
  3493. ZoneName := "Kincaid Bridge"
  3494. }
  3495. else if (posX >= -1213.910) and (posY >= 721.111) and (posZ >= -89.084) and (posX <= -1087.930) and (posY <= 950.022) and (posZ <= 110.916)
  3496. {
  3497. ZoneName := "Kincaid Bridge"
  3498. }
  3499. else if (posX >= 930.221) and (posY >= -2006.780) and (posZ >= -89.084) and (posX <= 1073.220) and (posY <= -1804.210) and (posZ <= 110.916)
  3500. {
  3501. ZoneName := "Verona Beach"
  3502. }
  3503. else if (posX >= 1073.220) and (posY >= -2006.780) and (posZ >= -89.084) and (posX <= 1249.620) and (posY <= -1842.270) and (posZ <= 110.916)
  3504. {
  3505. ZoneName := "Verdant Bluffs"
  3506. }
  3507. else if (posX >= 787.461) and (posY >= -1130.840) and (posZ >= -89.084) and (posX <= 952.604) and (posY <= -954.662) and (posZ <= 110.916)
  3508. {
  3509. ZoneName := "Vinewood"
  3510. }
  3511. else if (posX >= 787.461) and (posY >= -1310.210) and (posZ >= -89.084) and (posX <= 952.663) and (posY <= -1130.840) and (posZ <= 110.916)
  3512. {
  3513. ZoneName := "Vinewood"
  3514. }
  3515. else if (posX >= 1463.900) and (posY >= -1577.590) and (posZ >= -89.084) and (posX <= 1667.960) and (posY <= -1430.870) and (posZ <= 110.916)
  3516. {
  3517. ZoneName := "Commerce"
  3518. }
  3519. else if (posX >= 787.461) and (posY >= -1416.250) and (posZ >= -89.084) and (posX <= 1072.660) and (posY <= -1310.210) and (posZ <= 110.916)
  3520. {
  3521. ZoneName := "Market"
  3522. }
  3523. else if (posX >= 2377.390) and (posY >= 596.349) and (posZ >= -89.084) and (posX <= 2537.390) and (posY <= 788.894) and (posZ <= 110.916)
  3524. {
  3525. ZoneName := "Rockshore West"
  3526. }
  3527. else if (posX >= 2237.400) and (posY >= 2542.550) and (posZ >= -89.084) and (posX <= 2498.210) and (posY <= 2663.170) and (posZ <= 110.916)
  3528. {
  3529. ZoneName := "Julius Thruway North"
  3530. }
  3531. else if (posX >= 2632.830) and (posY >= -1668.130) and (posZ >= -89.084) and (posX <= 2747.740) and (posY <= -1393.420) and (posZ <= 110.916)
  3532. {
  3533. ZoneName := "East Beach"
  3534. }
  3535. else if (posX >= 434.341) and (posY >= 366.572) and (posZ >= 0.000) and (posX <= 603.035) and (posY <= 555.680) and (posZ <= 200.000)
  3536. {
  3537. ZoneName := "Fallow Bridge"
  3538. }
  3539. else if (posX >= 2089.000) and (posY >= -1989.900) and (posZ >= -89.084) and (posX <= 2324.000) and (posY <= -1852.870) and (posZ <= 110.916)
  3540. {
  3541. ZoneName := "Willowfield"
  3542. }
  3543. else if (posX >= -2274.170) and (posY >= 578.396) and (posZ >= -7.6) and (posX <= -2078.670) and (posY <= 744.170) and (posZ <= 200.000)
  3544. {
  3545. ZoneName := "Chinatown"
  3546. }
  3547. else if (posX >= -208.570) and (posY >= 2337.180) and (posZ >= 0.000) and (posX <= 8.430) and (posY <= 2487.180) and (posZ <= 200.000)
  3548. {
  3549. ZoneName := "El Castillo del Diablo"
  3550. }
  3551. else if (posX >= 2324.000) and (posY >= -2145.100) and (posZ >= -89.084) and (posX <= 2703.580) and (posY <= -2059.230) and (posZ <= 110.916)
  3552. {
  3553. ZoneName := "Ocean Docks"
  3554. }
  3555. else if (posX >= -1132.820) and (posY >= -768.027) and (posZ >= 0.000) and (posX <= -956.476) and (posY <= -578.118) and (posZ <= 200.000)
  3556. {
  3557. ZoneName := "Easter Bay Chemicals"
  3558. }
  3559. else if (posX >= 1817.390) and (posY >= 1703.230) and (posZ >= -89.084) and (posX <= 2027.400) and (posY <= 1863.230) and (posZ <= 110.916)
  3560. {
  3561. ZoneName := "The Visage"
  3562. }
  3563. else if (posX >= -2994.490) and (posY >= -430.276) and (posZ >= -1.2) and (posX <= -2831.890) and (posY <= -222.589) and (posZ <= 200.000)
  3564. {
  3565. ZoneName := "Ocean Flats"
  3566. }
  3567. else if (posX >= 321.356) and (posY >= -860.619) and (posZ >= -89.084) and (posX <= 687.802) and (posY <= -768.027) and (posZ <= 110.916)
  3568. {
  3569. ZoneName := "Richman"
  3570. }
  3571. else if (posX >= 176.581) and (posY >= 1305.450) and (posZ >= -3.0) and (posX <= 338.658) and (posY <= 1520.720) and (posZ <= 200.000)
  3572. {
  3573. ZoneName := "Green Palms"
  3574. }
  3575. else if (posX >= 321.356) and (posY >= -768.027) and (posZ >= -89.084) and (posX <= 700.794) and (posY <= -674.885) and (posZ <= 110.916)
  3576. {
  3577. ZoneName := "Richman"
  3578. }
  3579. else if (posX >= 2162.390) and (posY >= 1883.230) and (posZ >= -89.084) and (posX <= 2437.390) and (posY <= 2012.180) and (posZ <= 110.916)
  3580. {
  3581. ZoneName := "Starfish Casino"
  3582. }
  3583. else if (posX >= 2747.740) and (posY >= -1668.130) and (posZ >= -89.084) and (posX <= 2959.350) and (posY <= -1498.620) and (posZ <= 110.916)
  3584. {
  3585. ZoneName := "East Beach"
  3586. }
  3587. else if (posX >= 2056.860) and (posY >= -1372.040) and (posZ >= -89.084) and (posX <= 2281.450) and (posY <= -1210.740) and (posZ <= 110.916)
  3588. {
  3589. ZoneName := "Jefferson"
  3590. }
  3591. else if (posX >= 1463.900) and (posY >= -1290.870) and (posZ >= -89.084) and (posX <= 1724.760) and (posY <= -1150.870) and (posZ <= 110.916)
  3592. {
  3593. ZoneName := "Downtown Los Santos"
  3594. }
  3595. else if (posX >= 1463.900) and (posY >= -1430.870) and (posZ >= -89.084) and (posX <= 1724.760) and (posY <= -1290.870) and (posZ <= 110.916)
  3596. {
  3597. ZoneName := "Downtown Los Santos"
  3598. }
  3599. else if (posX >= -1499.890) and (posY >= 696.442) and (posZ >= -179.615) and (posX <= -1339.890) and (posY <= 925.353) and (posZ <= 20.385)
  3600. {
  3601. ZoneName := "Garver Bridge"
  3602. }
  3603. else if (posX >= 1457.390) and (posY >= 823.228) and (posZ >= -89.084) and (posX <= 2377.390) and (posY <= 863.229) and (posZ <= 110.916)
  3604. {
  3605. ZoneName := "Julius Thruway South"
  3606. }
  3607. else if (posX >= 2421.030) and (posY >= -1628.530) and (posZ >= -89.084) and (posX <= 2632.830) and (posY <= -1454.350) and (posZ <= 110.916)
  3608. {
  3609. ZoneName := "East Los Santos"
  3610. }
  3611. else if (posX >= 964.391) and (posY >= 1044.690) and (posZ >= -89.084) and (posX <= 1197.390) and (posY <= 1203.220) and (posZ <= 110.916)
  3612. {
  3613. ZoneName := "Greenglass College"
  3614. }
  3615. else if (posX >= 2747.740) and (posY >= -1120.040) and (posZ >= -89.084) and (posX <= 2959.350) and (posY <= -945.035) and (posZ <= 110.916)
  3616. {
  3617. ZoneName := "Las Colinas"
  3618. }
  3619. else if (posX >= 737.573) and (posY >= -768.027) and (posZ >= -89.084) and (posX <= 1142.290) and (posY <= -674.885) and (posZ <= 110.916)
  3620. {
  3621. ZoneName := "Mulholland"
  3622. }
  3623. else if (posX >= 2201.820) and (posY >= -2730.880) and (posZ >= -89.084) and (posX <= 2324.000) and (posY <= -2418.330) and (posZ <= 110.916)
  3624. {
  3625. ZoneName := "Ocean Docks"
  3626. }
  3627. else if (posX >= 2462.130) and (posY >= -1454.350) and (posZ >= -89.084) and (posX <= 2581.730) and (posY <= -1135.040) and (posZ <= 110.916)
  3628. {
  3629. ZoneName := "East Los Santos"
  3630. }
  3631. else if (posX >= 2222.560) and (posY >= -1722.330) and (posZ >= -89.084) and (posX <= 2632.830) and (posY <= -1628.530) and (posZ <= 110.916)
  3632. {
  3633. ZoneName := "Ganton"
  3634. }
  3635. else if (posX >= -2831.890) and (posY >= -430.276) and (posZ >= -6.1) and (posX <= -2646.400) and (posY <= -222.589) and (posZ <= 200.000)
  3636. {
  3637. ZoneName := "Avispa Country Club"
  3638. }
  3639. else if (posX >= 1970.620) and (posY >= -2179.250) and (posZ >= -89.084) and (posX <= 2089.000) and (posY <= -1852.870) and (posZ <= 110.916)
  3640. {
  3641. ZoneName := "Willowfield"
  3642. }
  3643. else if (posX >= -1982.320) and (posY >= 1274.260) and (posZ >= -4.5) and (posX <= -1524.240) and (posY <= 1358.900) and (posZ <= 200.000)
  3644. {
  3645. ZoneName := "Esplanade North"
  3646. }
  3647. else if (posX >= 1817.390) and (posY >= 1283.230) and (posZ >= -89.084) and (posX <= 2027.390) and (posY <= 1469.230) and (posZ <= 110.916)
  3648. {
  3649. ZoneName := "The High Roller"
  3650. }
  3651. else if (posX >= 2201.820) and (posY >= -2418.330) and (posZ >= -89.084) and (posX <= 2324.000) and (posY <= -2095.000) and (posZ <= 110.916)
  3652. {
  3653. ZoneName := "Ocean Docks"
  3654. }
  3655. else if (posX >= 1823.080) and (posY >= 596.349) and (posZ >= -89.084) and (posX <= 1997.220) and (posY <= 823.228) and (posZ <= 110.916)
  3656. {
  3657. ZoneName := "Last Dime Motel"
  3658. }
  3659. else if (posX >= -2353.170) and (posY >= 2275.790) and (posZ >= 0.000) and (posX <= -2153.170) and (posY <= 2475.790) and (posZ <= 200.000)
  3660. {
  3661. ZoneName := "Bayside Marina"
  3662. }
  3663. else if (posX >= -2329.310) and (posY >= 458.411) and (posZ >= -7.6) and (posX <= -1993.280) and (posY <= 578.396) and (posZ <= 200.000)
  3664. {
  3665. ZoneName := "King's"
  3666. }
  3667. else if (posX >= 1692.620) and (posY >= -2179.250) and (posZ >= -89.084) and (posX <= 1812.620) and (posY <= -1842.270) and (posZ <= 110.916)
  3668. {
  3669. ZoneName := "El Corona"
  3670. }
  3671. else if (posX >= 1375.600) and (posY >= 596.349) and (posZ >= -89.084) and (posX <= 1558.090) and (posY <= 823.228) and (posZ <= 110.916)
  3672. {
  3673. ZoneName := "Blackfield Chapel"
  3674. }
  3675. else if (posX >= 1817.390) and (posY >= 1083.230) and (posZ >= -89.084) and (posX <= 2027.390) and (posY <= 1283.230) and (posZ <= 110.916)
  3676. {
  3677. ZoneName := "The Pink Swan"
  3678. }
  3679. else if (posX >= 1197.390) and (posY >= 1163.390) and (posZ >= -89.084) and (posX <= 1236.630) and (posY <= 2243.230) and (posZ <= 110.916)
  3680. {
  3681. ZoneName := "Julius Thruway West"
  3682. }
  3683. else if (posX >= 2581.730) and (posY >= -1393.420) and (posZ >= -89.084) and (posX <= 2747.740) and (posY <= -1135.040) and (posZ <= 110.916)
  3684. {
  3685. ZoneName := "Los Flores"
  3686. }
  3687. else if (posX >= 1817.390) and (posY >= 1863.230) and (posZ >= -89.084) and (posX <= 2106.700) and (posY <= 2011.830) and (posZ <= 110.916)
  3688. {
  3689. ZoneName := "The Visage"
  3690. }
  3691. else if (posX >= 1938.800) and (posY >= 2624.230) and (posZ >= -89.084) and (posX <= 2121.400) and (posY <= 2861.550) and (posZ <= 110.916)
  3692. {
  3693. ZoneName := "Prickle Pine"
  3694. }
  3695. else if (posX >= 851.449) and (posY >= -1804.210) and (posZ >= -89.084) and (posX <= 1046.150) and (posY <= -1577.590) and (posZ <= 110.916)
  3696. {
  3697. ZoneName := "Verona Beach"
  3698. }
  3699. else if (posX >= -1119.010) and (posY >= 1178.930) and (posZ >= -89.084) and (posX <= -862.025) and (posY <= 1351.450) and (posZ <= 110.916)
  3700. {
  3701. ZoneName := "Robada Intersection"
  3702. }
  3703. else if (posX >= 2749.900) and (posY >= 943.235) and (posZ >= -89.084) and (posX <= 2923.390) and (posY <= 1198.990) and (posZ <= 110.916)
  3704. {
  3705. ZoneName := "Linden Side"
  3706. }
  3707. else if (posX >= 2703.580) and (posY >= -2302.330) and (posZ >= -89.084) and (posX <= 2959.350) and (posY <= -2126.900) and (posZ <= 110.916)
  3708. {
  3709. ZoneName := "Ocean Docks"
  3710. }
  3711. else if (posX >= 2324.000) and (posY >= -2059.230) and (posZ >= -89.084) and (posX <= 2541.700) and (posY <= -1852.870) and (posZ <= 110.916)
  3712. {
  3713. ZoneName := "Willowfield"
  3714. }
  3715. else if (posX >= -2411.220) and (posY >= 265.243) and (posZ >= -9.1) and (posX <= -1993.280) and (posY <= 373.539) and (posZ <= 200.000)
  3716. {
  3717. ZoneName := "King's"
  3718. }
  3719. else if (posX >= 1323.900) and (posY >= -1842.270) and (posZ >= -89.084) and (posX <= 1701.900) and (posY <= -1722.260) and (posZ <= 110.916)
  3720. {
  3721. ZoneName := "Commerce"
  3722. }
  3723. else if (posX >= 1269.130) and (posY >= -768.027) and (posZ >= -89.084) and (posX <= 1414.070) and (posY <= -452.425) and (posZ <= 110.916)
  3724. {
  3725. ZoneName := "Mulholland"
  3726. }
  3727. else if (posX >= 647.712) and (posY >= -1804.210) and (posZ >= -89.084) and (posX <= 851.449) and (posY <= -1577.590) and (posZ <= 110.916)
  3728. {
  3729. ZoneName := "Marina"
  3730. }
  3731. else if (posX >= -2741.070) and (posY >= 1268.410) and (posZ >= -4.5) and (posX <= -2533.040) and (posY <= 1490.470) and (posZ <= 200.000)
  3732. {
  3733. ZoneName := "Battery Point"
  3734. }
  3735. else if (posX >= 1817.390) and (posY >= 863.232) and (posZ >= -89.084) and (posX <= 2027.390) and (posY <= 1083.230) and (posZ <= 110.916)
  3736. {
  3737. ZoneName := "The Four Dragons Casino"
  3738. }
  3739. else if (posX >= 964.391) and (posY >= 1203.220) and (posZ >= -89.084) and (posX <= 1197.390) and (posY <= 1403.220) and (posZ <= 110.916)
  3740. {
  3741. ZoneName := "Blackfield"
  3742. }
  3743. else if (posX >= 1534.560) and (posY >= 2433.230) and (posZ >= -89.084) and (posX <= 1848.400) and (posY <= 2583.230) and (posZ <= 110.916)
  3744. {
  3745. ZoneName := "Julius Thruway North"
  3746. }
  3747. else if (posX >= 1117.400) and (posY >= 2723.230) and (posZ >= -89.084) and (posX <= 1457.460) and (posY <= 2863.230) and (posZ <= 110.916)
  3748. {
  3749. ZoneName := "Yellow Bell Gol Course"
  3750. }
  3751. else if (posX >= 1812.620) and (posY >= -1602.310) and (posZ >= -89.084) and (posX <= 2124.660) and (posY <= -1449.670) and (posZ <= 110.916)
  3752. {
  3753. ZoneName := "Idlewood"
  3754. }
  3755. else if (posX >= 1297.470) and (posY >= 2142.860) and (posZ >= -89.084) and (posX <= 1777.390) and (posY <= 2243.230) and (posZ <= 110.916)
  3756. {
  3757. ZoneName := "Redsands West"
  3758. }
  3759. else if (posX >= -2270.040) and (posY >= -324.114) and (posZ >= -1.2) and (posX <= -1794.920) and (posY <= -222.589) and (posZ <= 200.000)
  3760. {
  3761. ZoneName := "Doherty"
  3762. }
  3763. else if (posX >= 967.383) and (posY >= -450.390) and (posZ >= -3.0) and (posX <= 1176.780) and (posY <= -217.900) and (posZ <= 200.000)
  3764. {
  3765. ZoneName := "Hilltop Farm"
  3766. }
  3767. else if (posX >= -926.130) and (posY >= 1398.730) and (posZ >= -3.0) and (posX <= -719.234) and (posY <= 1634.690) and (posZ <= 200.000)
  3768. {
  3769. ZoneName := "Las Barrancas"
  3770. }
  3771. else if (posX >= 1817.390) and (posY >= 1469.230) and (posZ >= -89.084) and (posX <= 2027.400) and (posY <= 1703.230) and (posZ <= 110.916)
  3772. {
  3773. ZoneName := "Pirates in Men's Pants"
  3774. }
  3775. else if (posX >= -2867.850) and (posY >= 277.411) and (posZ >= -9.1) and (posX <= -2593.440) and (posY <= 458.411) and (posZ <= 200.000)
  3776. {
  3777. ZoneName := "City Hall"
  3778. }
  3779. else if (posX >= -2646.400) and (posY >= -355.493) and (posZ >= 0.000) and (posX <= -2270.040) and (posY <= -222.589) and (posZ <= 200.000)
  3780. {
  3781. ZoneName := "Avispa Country Club"
  3782. }
  3783. else if (posX >= 2027.400) and (posY >= 863.229) and (posZ >= -89.084) and (posX <= 2087.390) and (posY <= 1703.230) and (posZ <= 110.916)
  3784. {
  3785. ZoneName := "The Strip"
  3786. }
  3787. else if (posX >= -2593.440) and (posY >= -222.589) and (posZ >= -1.0) and (posX <= -2411.220) and (posY <= 54.722) and (posZ <= 200.000)
  3788. {
  3789. ZoneName := "Hashbury"
  3790. }
  3791. else if (posX >= 1852.000) and (posY >= -2394.330) and (posZ >= -89.084) and (posX <= 2089.000) and (posY <= -2179.250) and (posZ <= 110.916)
  3792. {
  3793. ZoneName := "Los Santos International"
  3794. }
  3795. else if (posX >= 1098.310) and (posY >= 1726.220) and (posZ >= -89.084) and (posX <= 1197.390) and (posY <= 2243.230) and (posZ <= 110.916)
  3796. {
  3797. ZoneName := "Whitewood Estates"
  3798. }
  3799. else if (posX >= -789.737) and (posY >= 1659.680) and (posZ >= -89.084) and (posX <= -599.505) and (posY <= 1929.410) and (posZ <= 110.916)
  3800. {
  3801. ZoneName := "Sherman Reservoir"
  3802. }
  3803. else if (posX >= 1812.620) and (posY >= -2179.250) and (posZ >= -89.084) and (posX <= 1970.620) and (posY <= -1852.870) and (posZ <= 110.916)
  3804. {
  3805. ZoneName := "El Corona"
  3806. }
  3807. else if (posX >= -1700.010) and (posY >= 744.267) and (posZ >= -6.1) and (posX <= -1580.010) and (posY <= 1176.520) and (posZ <= 200.000)
  3808. {
  3809. ZoneName := "Downtown"
  3810. }
  3811. else if (posX >= -2178.690) and (posY >= -1250.970) and (posZ >= 0.000) and (posX <= -1794.920) and (posY <= -1115.580) and (posZ <= 200.000)
  3812. {
  3813. ZoneName := "Foster Valley"
  3814. }
  3815. else if (posX >= -354.332) and (posY >= 2580.360) and (posZ >= 2.0) and (posX <= -133.625) and (posY <= 2816.820) and (posZ <= 200.000)
  3816. {
  3817. ZoneName := "Las Payasadas"
  3818. }
  3819. else if (posX >= -936.668) and (posY >= 2611.440) and (posZ >= 2.0) and (posX <= -715.961) and (posY <= 2847.900) and (posZ <= 200.000)
  3820. {
  3821. ZoneName := "Valle Ocultado"
  3822. }
  3823. else if (posX >= 1166.530) and (posY >= 795.010) and (posZ >= -89.084) and (posX <= 1375.600) and (posY <= 1044.690) and (posZ <= 110.916)
  3824. {
  3825. ZoneName := "Blackfield Intersection"
  3826. }
  3827. else if (posX >= 2222.560) and (posY >= -1852.870) and (posZ >= -89.084) and (posX <= 2632.830) and (posY <= -1722.330) and (posZ <= 110.916)
  3828. {
  3829. ZoneName := "Ganton"
  3830. }
  3831. else if (posX >= -1213.910) and (posY >= -730.118) and (posZ >= 0.000) and (posX <= -1132.820) and (posY <= -50.096) and (posZ <= 200.000)
  3832. {
  3833. ZoneName := "Easter Bay Airport"
  3834. }
  3835. else if (posX >= 1817.390) and (posY >= 2011.830) and (posZ >= -89.084) and (posX <= 2106.700) and (posY <= 2202.760) and (posZ <= 110.916)
  3836. {
  3837. ZoneName := "Redsands East"
  3838. }
  3839. else if (posX >= -1499.890) and (posY >= 578.396) and (posZ >= -79.615) and (posX <= -1339.890) and (posY <= 1274.260) and (posZ <= 20.385)
  3840. {
  3841. ZoneName := "Esplanade East"
  3842. }
  3843. else if (posX >= 2087.390) and (posY >= 1543.230) and (posZ >= -89.084) and (posX <= 2437.390) and (posY <= 1703.230) and (posZ <= 110.916)
  3844. {
  3845. ZoneName := "Caligula's Palace"
  3846. }
  3847. else if (posX >= 2087.390) and (posY >= 1383.230) and (posZ >= -89.084) and (posX <= 2437.390) and (posY <= 1543.230) and (posZ <= 110.916)
  3848. {
  3849. ZoneName := "Royal Casino"
  3850. }
  3851. else if (posX >= 72.648) and (posY >= -1235.070) and (posZ >= -89.084) and (posX <= 321.356) and (posY <= -1008.150) and (posZ <= 110.916)
  3852. {
  3853. ZoneName := "Richman"
  3854. }
  3855. else if (posX >= 2437.390) and (posY >= 1783.230) and (posZ >= -89.084) and (posX <= 2685.160) and (posY <= 2012.180) and (posZ <= 110.916)
  3856. {
  3857. ZoneName := "Starfish Casino"
  3858. }
  3859. else if (posX >= 1281.130) and (posY >= -452.425) and (posZ >= -89.084) and (posX <= 1641.130) and (posY <= -290.913) and (posZ <= 110.916)
  3860. {
  3861. ZoneName := "Mulholland"
  3862. }
  3863. else if (posX >= -1982.320) and (posY >= 744.170) and (posZ >= -6.1) and (posX <= -1871.720) and (posY <= 1274.260) and (posZ <= 200.000)
  3864. {
  3865. ZoneName := "Downtown"
  3866. }
  3867. else if (posX >= 2576.920) and (posY >= 62.158) and (posZ >= 0.000) and (posX <= 2759.250) and (posY <= 385.503) and (posZ <= 200.000)
  3868. {
  3869. ZoneName := "Hankypanky Point"
  3870. }
  3871. else if (posX >= 2498.210) and (posY >= 2626.550) and (posZ >= -89.084) and (posX <= 2749.900) and (posY <= 2861.550) and (posZ <= 110.916)
  3872. {
  3873. ZoneName := "K.A.C.C. Military Fuels"
  3874. }
  3875. else if (posX >= 1777.390) and (posY >= 863.232) and (posZ >= -89.084) and (posX <= 1817.390) and (posY <= 2342.830) and (posZ <= 110.916)
  3876. {
  3877. ZoneName := "Harry Gold Parkway"
  3878. }
  3879. else if (posX >= -2290.190) and (posY >= 2548.290) and (posZ >= -89.084) and (posX <= -1950.190) and (posY <= 2723.290) and (posZ <= 110.916)
  3880. {
  3881. ZoneName := "Bayside Tunnel"
  3882. }
  3883. else if (posX >= 2324.000) and (posY >= -2302.330) and (posZ >= -89.084) and (posX <= 2703.580) and (posY <= -2145.100) and (posZ <= 110.916)
  3884. {
  3885. ZoneName := "Ocean Docks"
  3886. }
  3887. else if (posX >= 321.356) and (posY >= -1044.070) and (posZ >= -89.084) and (posX <= 647.557) and (posY <= -860.619) and (posZ <= 110.916)
  3888. {
  3889. ZoneName := "Richman"
  3890. }
  3891. else if (posX >= 1558.090) and (posY >= 596.349) and (posZ >= -89.084) and (posX <= 1823.080) and (posY <= 823.235) and (posZ <= 110.916)
  3892. {
  3893. ZoneName := "Randolph Industrial Estate"
  3894. }
  3895. else if (posX >= 2632.830) and (posY >= -1852.870) and (posZ >= -89.084) and (posX <= 2959.350) and (posY <= -1668.130) and (posZ <= 110.916)
  3896. {
  3897. ZoneName := "East Beach"
  3898. }
  3899. else if (posX >= -314.426) and (posY >= -753.874) and (posZ >= -89.084) and (posX <= -106.339) and (posY <= -463.073) and (posZ <= 110.916)
  3900. {
  3901. ZoneName := "Flint Water"
  3902. }
  3903. else if (posX >= 19.607) and (posY >= -404.136) and (posZ >= 3.8) and (posX <= 349.607) and (posY <= -220.137) and (posZ <= 200.000)
  3904. {
  3905. ZoneName := "Blueberry"
  3906. }
  3907. else if (posX >= 2749.900) and (posY >= 1198.990) and (posZ >= -89.084) and (posX <= 2923.390) and (posY <= 1548.990) and (posZ <= 110.916)
  3908. {
  3909. ZoneName := "Linden Station"
  3910. }
  3911. else if (posX >= 1812.620) and (posY >= -1350.720) and (posZ >= -89.084) and (posX <= 2056.860) and (posY <= -1100.820) and (posZ <= 110.916)
  3912. {
  3913. ZoneName := "Glen Park"
  3914. }
  3915. else if (posX >= -1993.280) and (posY >= 265.243) and (posZ >= -9.1) and (posX <= -1794.920) and (posY <= 578.396) and (posZ <= 200.000)
  3916. {
  3917. ZoneName := "Downtown"
  3918. }
  3919. else if (posX >= 1377.390) and (posY >= 2243.230) and (posZ >= -89.084) and (posX <= 1704.590) and (posY <= 2433.230) and (posZ <= 110.916)
  3920. {
  3921. ZoneName := "Redsands West"
  3922. }
  3923. else if (posX >= 321.356) and (posY >= -1235.070) and (posZ >= -89.084) and (posX <= 647.522) and (posY <= -1044.070) and (posZ <= 110.916)
  3924. {
  3925. ZoneName := "Richman"
  3926. }
  3927. else if (posX >= -2741.450) and (posY >= 1659.680) and (posZ >= -6.1) and (posX <= -2616.400) and (posY <= 2175.150) and (posZ <= 200.000)
  3928. {
  3929. ZoneName := "Gant Bridge"
  3930. }
  3931. else if (posX >= -90.218) and (posY >= 1286.850) and (posZ >= -3.0) and (posX <= 153.859) and (posY <= 1554.120) and (posZ <= 200.000)
  3932. {
  3933. ZoneName := "Lil' Probe Inn"
  3934. }
  3935. else if (posX >= -187.700) and (posY >= -1596.760) and (posZ >= -89.084) and (posX <= 17.063) and (posY <= -1276.600) and (posZ <= 110.916)
  3936. {
  3937. ZoneName := "Flint Intersection"
  3938. }
  3939. else if (posX >= 2281.450) and (posY >= -1135.040) and (posZ >= -89.084) and (posX <= 2632.740) and (posY <= -945.035) and (posZ <= 110.916)
  3940. {
  3941. ZoneName := "Las Colinas"
  3942. }
  3943. else if (posX >= 2749.900) and (posY >= 1548.990) and (posZ >= -89.084) and (posX <= 2923.390) and (posY <= 1937.250) and (posZ <= 110.916)
  3944. {
  3945. ZoneName := "Sobell Rail Yards"
  3946. }
  3947. else if (posX >= 2011.940) and (posY >= 2202.760) and (posZ >= -89.084) and (posX <= 2237.400) and (posY <= 2508.230) and (posZ <= 110.916)
  3948. {
  3949. ZoneName := "The Emerald Isle"
  3950. }
  3951. else if (posX >= -208.570) and (posY >= 2123.010) and (posZ >= -7.6) and (posX <= 114.033) and (posY <= 2337.180) and (posZ <= 200.000)
  3952. {
  3953. ZoneName := "El Castillo del Diablo"
  3954. }
  3955. else if (posX >= -2741.070) and (posY >= 458.411) and (posZ >= -7.6) and (posX <= -2533.040) and (posY <= 793.411) and (posZ <= 200.000)
  3956. {
  3957. ZoneName := "Santa Flora"
  3958. }
  3959. else if (posX >= 2703.580) and (posY >= -2126.900) and (posZ >= -89.084) and (posX <= 2959.350) and (posY <= -1852.870) and (posZ <= 110.916)
  3960. {
  3961. ZoneName := "Playa del Seville"
  3962. }
  3963. else if (posX >= 926.922) and (posY >= -1577.590) and (posZ >= -89.084) and (posX <= 1370.850) and (posY <= -1416.250) and (posZ <= 110.916)
  3964. {
  3965. ZoneName := "Market"
  3966. }
  3967. else if (posX >= -2593.440) and (posY >= 54.722) and (posZ >= 0.000) and (posX <= -2411.220) and (posY <= 458.411) and (posZ <= 200.000)
  3968. {
  3969. ZoneName := "Queens"
  3970. }
  3971. else if (posX >= 1098.390) and (posY >= 2243.230) and (posZ >= -89.084) and (posX <= 1377.390) and (posY <= 2507.230) and (posZ <= 110.916)
  3972. {
  3973. ZoneName := "Pilson Intersection"
  3974. }
  3975. else if (posX >= 2121.400) and (posY >= 2663.170) and (posZ >= -89.084) and (posX <= 2498.210) and (posY <= 2861.550) and (posZ <= 110.916)
  3976. {
  3977. ZoneName := "Spinybed"
  3978. }
  3979. else if (posX >= 2437.390) and (posY >= 1383.230) and (posZ >= -89.084) and (posX <= 2624.400) and (posY <= 1783.230) and (posZ <= 110.916)
  3980. {
  3981. ZoneName := "Pilgrim"
  3982. }
  3983. else if (posX >= 964.391) and (posY >= 1403.220) and (posZ >= -89.084) and (posX <= 1197.390) and (posY <= 1726.220) and (posZ <= 110.916)
  3984. {
  3985. ZoneName := "Blackfield"
  3986. }
  3987. else if (posX >= -410.020) and (posY >= 1403.340) and (posZ >= -3.0) and (posX <= -137.969) and (posY <= 1681.230) and (posZ <= 200.000)
  3988. {
  3989. ZoneName := "'The Big Ear'"
  3990. }
  3991. else if (posX >= 580.794) and (posY >= -674.885) and (posZ >= -9.5) and (posX <= 861.085) and (posY <= -404.790) and (posZ <= 200.000)
  3992. {
  3993. ZoneName := "Dillimore"
  3994. }
  3995. else if (posX >= -1645.230) and (posY >= 2498.520) and (posZ >= 0.000) and (posX <= -1372.140) and (posY <= 2777.850) and (posZ <= 200.000)
  3996. {
  3997. ZoneName := "El Quebrados"
  3998. }
  3999. else if (posX >= -2533.040) and (posY >= 1358.900) and (posZ >= -4.5) and (posX <= -1996.660) and (posY <= 1501.210) and (posZ <= 200.000)
  4000. {
  4001. ZoneName := "Esplanade North"
  4002. }
  4003. else if (posX >= -1499.890) and (posY >= -50.096) and (posZ >= -1.0) and (posX <= -1242.980) and (posY <= 249.904) and (posZ <= 200.000)
  4004. {
  4005. ZoneName := "Easter Bay Airport"
  4006. }
  4007. else if (posX >= 1916.990) and (posY >= -233.323) and (posZ >= -100.000) and (posX <= 2131.720) and (posY <= 13.800) and (posZ <= 200.000)
  4008. {
  4009. ZoneName := "Fisher's Lagoon"
  4010. }
  4011. else if (posX >= 1414.070) and (posY >= -768.027) and (posZ >= -89.084) and (posX <= 1667.610) and (posY <= -452.425) and (posZ <= 110.916)
  4012. {
  4013. ZoneName := "Mulholland"
  4014. }
  4015. else if (posX >= 2747.740) and (posY >= -1498.620) and (posZ >= -89.084) and (posX <= 2959.350) and (posY <= -1120.040) and (posZ <= 110.916)
  4016. {
  4017. ZoneName := "East Beach"
  4018. }
  4019. else if (posX >= 2450.390) and (posY >= 385.503) and (posZ >= -100.000) and (posX <= 2759.250) and (posY <= 562.349) and (posZ <= 200.000)
  4020. {
  4021. ZoneName := "San Andreas Sound"
  4022. }
  4023. else if (posX >= -2030.120) and (posY >= -2174.890) and (posZ >= -6.1) and (posX <= -1820.640) and (posY <= -1771.660) and (posZ <= 200.000)
  4024. {
  4025. ZoneName := "Shady Creeks"
  4026. }
  4027. else if (posX >= 1072.660) and (posY >= -1416.250) and (posZ >= -89.084) and (posX <= 1370.850) and (posY <= -1130.850) and (posZ <= 110.916)
  4028. {
  4029. ZoneName := "Market"
  4030. }
  4031. else if (posX >= 1997.220) and (posY >= 596.349) and (posZ >= -89.084) and (posX <= 2377.390) and (posY <= 823.228) and (posZ <= 110.916)
  4032. {
  4033. ZoneName := "Rockshore West"
  4034. }
  4035. else if (posX >= 1534.560) and (posY >= 2583.230) and (posZ >= -89.084) and (posX <= 1848.400) and (posY <= 2863.230) and (posZ <= 110.916)
  4036. {
  4037. ZoneName := "Prickle Pine"
  4038. }
  4039. else if (posX >= -1794.920) and (posY >= -50.096) and (posZ >= -1.04) and (posX <= -1499.890) and (posY <= 249.904) and (posZ <= 200.000)
  4040. {
  4041. ZoneName := "Easter Basin"
  4042. }
  4043. else if (posX >= -1166.970) and (posY >= -1856.030) and (posZ >= 0.000) and (posX <= -815.624) and (posY <= -1602.070) and (posZ <= 200.000)
  4044. {
  4045. ZoneName := "Leafy Hollow"
  4046. }
  4047. else if (posX >= 1457.390) and (posY >= 863.229) and (posZ >= -89.084) and (posX <= 1777.400) and (posY <= 1143.210) and (posZ <= 110.916)
  4048. {
  4049. ZoneName := "LVA Freight Depot"
  4050. }
  4051. else if (posX >= 1117.400) and (posY >= 2507.230) and (posZ >= -89.084) and (posX <= 1534.560) and (posY <= 2723.230) and (posZ <= 110.916)
  4052. {
  4053. ZoneName := "Prickle Pine"
  4054. }
  4055. else if (posX >= 104.534) and (posY >= -220.137) and (posZ >= 2.3) and (posX <= 349.607) and (posY <= 152.236) and (posZ <= 200.000)
  4056. {
  4057. ZoneName := "Blueberry"
  4058. }
  4059. else if (posX >= -464.515) and (posY >= 2217.680) and (posZ >= 0.000) and (posX <= -208.570) and (posY <= 2580.360) and (posZ <= 200.000)
  4060. {
  4061. ZoneName := "El Castillo del Diablo"
  4062. }
  4063. else if (posX >= -2078.670) and (posY >= 578.396) and (posZ >= -7.6) and (posX <= -1499.890) and (posY <= 744.267) and (posZ <= 200.000)
  4064. {
  4065. ZoneName := "Downtown"
  4066. }
  4067. else if (posX >= 2537.390) and (posY >= 676.549) and (posZ >= -89.084) and (posX <= 2902.350) and (posY <= 943.235) and (posZ <= 110.916)
  4068. {
  4069. ZoneName := "Rockshore East"
  4070. }
  4071. else if (posX >= -2616.400) and (posY >= 1501.210) and (posZ >= -3.0) and (posX <= -1996.660) and (posY <= 1659.680) and (posZ <= 200.000)
  4072. {
  4073. ZoneName := "San Fierro Bay"
  4074. }
  4075. else if (posX >= -2741.070) and (posY >= 793.411) and (posZ >= -6.1) and (posX <= -2533.040) and (posY <= 1268.410) and (posZ <= 200.000)
  4076. {
  4077. ZoneName := "Paradiso"
  4078. }
  4079. else if (posX >= 2087.390) and (posY >= 1203.230) and (posZ >= -89.084) and (posX <= 2640.400) and (posY <= 1383.230) and (posZ <= 110.916)
  4080. {
  4081. ZoneName := "The Camel's Toe"
  4082. }
  4083. else if (posX >= 2162.390) and (posY >= 2012.180) and (posZ >= -89.084) and (posX <= 2685.160) and (posY <= 2202.760) and (posZ <= 110.916)
  4084. {
  4085. ZoneName := "Old Venturas Strip"
  4086. }
  4087. else if (posX >= -2533.040) and (posY >= 578.396) and (posZ >= -7.6) and (posX <= -2274.170) and (posY <= 968.369) and (posZ <= 200.000)
  4088. {
  4089. ZoneName := "Juniper Hill"
  4090. }
  4091. else if (posX >= -2533.040) and (posY >= 968.369) and (posZ >= -6.1) and (posX <= -2274.170) and (posY <= 1358.900) and (posZ <= 200.000)
  4092. {
  4093. ZoneName := "Juniper Hollow"
  4094. }
  4095. else if (posX >= 2237.400) and (posY >= 2202.760) and (posZ >= -89.084) and (posX <= 2536.430) and (posY <= 2542.550) and (posZ <= 110.916)
  4096. {
  4097. ZoneName := "Roca Escalante"
  4098. }
  4099. else if (posX >= 2685.160) and (posY >= 1055.960) and (posZ >= -89.084) and (posX <= 2749.900) and (posY <= 2626.550) and (posZ <= 110.916)
  4100. {
  4101. ZoneName := "Julius Thruway East"
  4102. }
  4103. else if (posX >= 647.712) and (posY >= -2173.290) and (posZ >= -89.084) and (posX <= 930.221) and (posY <= -1804.210) and (posZ <= 110.916)
  4104. {
  4105. ZoneName := "Verona Beach"
  4106. }
  4107. else if (posX >= -2178.690) and (posY >= -599.884) and (posZ >= -1.2) and (posX <= -1794.920) and (posY <= -324.114) and (posZ <= 200.000)
  4108. {
  4109. ZoneName := "Foster Valley"
  4110. }
  4111. else if (posX >= -901.129) and (posY >= 2221.860) and (posZ >= 0.000) and (posX <= -592.090) and (posY <= 2571.970) and (posZ <= 200.000)
  4112. {
  4113. ZoneName := "Arco del Oeste"
  4114. }
  4115. else if (posX >= -792.254) and (posY >= -698.555) and (posZ >= -5.3) and (posX <= -452.404) and (posY <= -380.043) and (posZ <= 200.000)
  4116. {
  4117. ZoneName := "Fallen Tree"
  4118. }
  4119. else if (posX >= -1209.670) and (posY >= -1317.100) and (posZ >= 114.981) and (posX <= -908.161) and (posY <= -787.391) and (posZ <= 251.981)
  4120. {
  4121. ZoneName := "The Farm"
  4122. }
  4123. else if (posX >= -968.772) and (posY >= 1929.410) and (posZ >= -3.0) and (posX <= -481.126) and (posY <= 2155.260) and (posZ <= 200.000)
  4124. {
  4125. ZoneName := "The Sherman Dam"
  4126. }
  4127. else if (posX >= -1996.660) and (posY >= 1358.900) and (posZ >= -4.5) and (posX <= -1524.240) and (posY <= 1592.510) and (posZ <= 200.000)
  4128. {
  4129. ZoneName := "Esplanade North"
  4130. }
  4131. else if (posX >= -1871.720) and (posY >= 744.170) and (posZ >= -6.1) and (posX <= -1701.300) and (posY <= 1176.420) and (posZ <= 300.000)
  4132. {
  4133. ZoneName := "Financial"
  4134. }
  4135. else if (posX >= -2411.220) and (posY >= -222.589) and (posZ >= -1.14) and (posX <= -2173.040) and (posY <= 265.243) and (posZ <= 200.000)
  4136. {
  4137. ZoneName := "Garcia"
  4138. }
  4139. else if (posX >= 1119.510) and (posY >= 119.526) and (posZ >= -3.0) and (posX <= 1451.400) and (posY <= 493.323) and (posZ <= 200.000)
  4140. {
  4141. ZoneName := "Montgomery"
  4142. }
  4143. else if (posX >= 2749.900) and (posY >= 1937.250) and (posZ >= -89.084) and (posX <= 2921.620) and (posY <= 2669.790) and (posZ <= 110.916)
  4144. {
  4145. ZoneName := "Creek"
  4146. }
  4147. else if (posX >= 1249.620) and (posY >= -2394.330) and (posZ >= -89.084) and (posX <= 1852.000) and (posY <= -2179.250) and (posZ <= 110.916)
  4148. {
  4149. ZoneName := "Los Santos International"
  4150. }
  4151. else if (posX >= 72.648) and (posY >= -2173.290) and (posZ >= -89.084) and (posX <= 342.648) and (posY <= -1684.650) and (posZ <= 110.916)
  4152. {
  4153. ZoneName := "Santa Maria Beach"
  4154. }
  4155. else if (posX >= 1463.900) and (posY >= -1150.870) and (posZ >= -89.084) and (posX <= 1812.620) and (posY <= -768.027) and (posZ <= 110.916)
  4156. {
  4157. ZoneName := "Mulholland Intersection"
  4158. }
  4159. else if (posX >= -2324.940) and (posY >= -2584.290) and (posZ >= -6.1) and (posX <= -1964.220) and (posY <= -2212.110) and (posZ <= 200.000)
  4160. {
  4161. ZoneName := "Angel Pine"
  4162. }
  4163. else if (posX >= 37.032) and (posY >= 2337.180) and (posZ >= -3.0) and (posX <= 435.988) and (posY <= 2677.900) and (posZ <= 200.000)
  4164. {
  4165. ZoneName := "Verdant Meadows"
  4166. }
  4167. else if (posX >= 338.658) and (posY >= 1228.510) and (posZ >= 0.000) and (posX <= 664.308) and (posY <= 1655.050) and (posZ <= 200.000)
  4168. {
  4169. ZoneName := "Octane Springs"
  4170. }
  4171. else if (posX >= 2087.390) and (posY >= 943.235) and (posZ >= -89.084) and (posX <= 2623.180) and (posY <= 1203.230) and (posZ <= 110.916)
  4172. {
  4173. ZoneName := "Come-A-Lot"
  4174. }
  4175. else if (posX >= 1236.630) and (posY >= 1883.110) and (posZ >= -89.084) and (posX <= 1777.390) and (posY <= 2142.860) and (posZ <= 110.916)
  4176. {
  4177. ZoneName := "Redsands West"
  4178. }
  4179. else if (posX >= 342.648) and (posY >= -2173.290) and (posZ >= -89.084) and (posX <= 647.712) and (posY <= -1684.650) and (posZ <= 110.916)
  4180. {
  4181. ZoneName := "Santa Maria Beach"
  4182. }
  4183. else if (posX >= 1249.620) and (posY >= -2179.250) and (posZ >= -89.084) and (posX <= 1692.620) and (posY <= -1842.270) and (posZ <= 110.916)
  4184. {
  4185. ZoneName := "Verdant Bluffs"
  4186. }
  4187. else if (posX >= 1236.630) and (posY >= 1203.280) and (posZ >= -89.084) and (posX <= 1457.370) and (posY <= 1883.110) and (posZ <= 110.916)
  4188. {
  4189. ZoneName := "Las Venturas Airport"
  4190. }
  4191. else if (posX >= -594.191) and (posY >= -1648.550) and (posZ >= 0.000) and (posX <= -187.700) and (posY <= -1276.600) and (posZ <= 200.000)
  4192. {
  4193. ZoneName := "Flint Range"
  4194. }
  4195. else if (posX >= 930.221) and (posY >= -2488.420) and (posZ >= -89.084) and (posX <= 1249.620) and (posY <= -2006.780) and (posZ <= 110.916)
  4196. {
  4197. ZoneName := "Verdant Bluffs"
  4198. }
  4199. else if (posX >= 2160.220) and (posY >= -149.004) and (posZ >= 0.000) and (posX <= 2576.920) and (posY <= 228.322) and (posZ <= 200.000)
  4200. {
  4201. ZoneName := "Palomino Creek"
  4202. }
  4203. else if (posX >= 2373.770) and (posY >= -2697.090) and (posZ >= -89.084) and (posX <= 2809.220) and (posY <= -2330.460) and (posZ <= 110.916)
  4204. {
  4205. ZoneName := "Ocean Docks"
  4206. }
  4207. else if (posX >= -1213.910) and (posY >= -50.096) and (posZ >= -4.5) and (posX <= -947.980) and (posY <= 578.396) and (posZ <= 200.000)
  4208. {
  4209. ZoneName := "Easter Bay Airport"
  4210. }
  4211. else if (posX >= 883.308) and (posY >= 1726.220) and (posZ >= -89.084) and (posX <= 1098.310) and (posY <= 2507.230) and (posZ <= 110.916)
  4212. {
  4213. ZoneName := "Whitewood Estates"
  4214. }
  4215. else if (posX >= -2274.170) and (posY >= 744.170) and (posZ >= -6.1) and (posX <= -1982.320) and (posY <= 1358.900) and (posZ <= 200.000)
  4216. {
  4217. ZoneName := "Calton Heights"
  4218. }
  4219. else if (posX >= -1794.920) and (posY >= 249.904) and (posZ >= -9.1) and (posX <= -1242.980) and (posY <= 578.396) and (posZ <= 200.000)
  4220. {
  4221. ZoneName := "Easter Basin"
  4222. }
  4223. else if (posX >= -321.744) and (posY >= -2224.430) and (posZ >= -89.084) and (posX <= 44.615) and (posY <= -1724.430) and (posZ <= 110.916)
  4224. {
  4225. ZoneName := "Los Santos Inlet"
  4226. }
  4227. else if (posX >= -2173.040) and (posY >= -222.589) and (posZ >= -1.0) and (posX <= -1794.920) and (posY <= 265.243) and (posZ <= 200.000)
  4228. {
  4229. ZoneName := "Doherty"
  4230. }
  4231. else if (posX >= -2178.690) and (posY >= -2189.910) and (posZ >= -47.917) and (posX <= -2030.120) and (posY <= -1771.660) and (posZ <= 576.083)
  4232. {
  4233. ZoneName := "Mount Chiliad"
  4234. }
  4235. else if (posX >= -376.233) and (posY >= 826.326) and (posZ >= -3.0) and (posX <= 123.717) and (posY <= 1220.440) and (posZ <= 200.000)
  4236. {
  4237. ZoneName := "Fort Carson"
  4238. }
  4239. else if (posX >= -2178.690) and (posY >= -1115.580) and (posZ >= 0.000) and (posX <= -1794.920) and (posY <= -599.884) and (posZ <= 200.000)
  4240. {
  4241. ZoneName := "Foster Valley"
  4242. }
  4243. else if (posX >= -2994.490) and (posY >= -222.589) and (posZ >= -1.0) and (posX <= -2593.440) and (posY <= 277.411) and (posZ <= 200.000)
  4244. {
  4245. ZoneName := "Ocean Flats"
  4246. }
  4247. else if (posX >= 508.189) and (posY >= -139.259) and (posZ >= 0.000) and (posX <= 1306.660) and (posY <= 119.526) and (posZ <= 200.000)
  4248. {
  4249. ZoneName := "Fern Ridge"
  4250. }
  4251. else if (posX >= -2741.070) and (posY >= 2175.150) and (posZ >= 0.000) and (posX <= -2353.170) and (posY <= 2722.790) and (posZ <= 200.000)
  4252. {
  4253. ZoneName := "Bayside"
  4254. }
  4255. else if (posX >= 1457.370) and (posY >= 1203.280) and (posZ >= -89.084) and (posX <= 1777.390) and (posY <= 1883.110) and (posZ <= 110.916)
  4256. {
  4257. ZoneName := "Las Venturas Airport"
  4258. }
  4259. else if (posX >= -319.676) and (posY >= -220.137) and (posZ >= 0.000) and (posX <= 104.534) and (posY <= 293.324) and (posZ <= 200.000)
  4260. {
  4261. ZoneName := "Blueberry Acres"
  4262. }
  4263. else if (posX >= -2994.490) and (posY >= 458.411) and (posZ >= -6.1) and (posX <= -2741.070) and (posY <= 1339.610) and (posZ <= 200.000)
  4264. {
  4265. ZoneName := "Palisades"
  4266. }
  4267. else if (posX >= 2285.370) and (posY >= -768.027) and (posZ >= 0.000) and (posX <= 2770.590) and (posY <= -269.740) and (posZ <= 200.000)
  4268. {
  4269. ZoneName := "North Rock"
  4270. }
  4271. else if (posX >= 337.244) and (posY >= 710.840) and (posZ >= -115.239) and (posX <= 860.554) and (posY <= 1031.710) and (posZ <= 203.761)
  4272. {
  4273. ZoneName := "Hunter Quarry"
  4274. }
  4275. else if (posX >= 1382.730) and (posY >= -2730.880) and (posZ >= -89.084) and (posX <= 2201.820) and (posY <= -2394.330) and (posZ <= 110.916)
  4276. {
  4277. ZoneName := "Los Santos International"
  4278. }
  4279. else if (posX >= -2994.490) and (posY >= -811.276) and (posZ >= 0.000) and (posX <= -2178.690) and (posY <= -430.276) and (posZ <= 200.000)
  4280. {
  4281. ZoneName := "Missionary Hill"
  4282. }
  4283. else if (posX >= -2616.400) and (posY >= 1659.680) and (posZ >= -3.0) and (posX <= -1996.660) and (posY <= 2175.150) and (posZ <= 200.000)
  4284. {
  4285. ZoneName := "San Fierro Bay"
  4286. }
  4287. else if (posX >= -91.586) and (posY >= 1655.050) and (posZ >= -50.000) and (posX <= 421.234) and (posY <= 2123.010) and (posZ <= 250.000)
  4288. {
  4289. ZoneName := "Restricted Area"
  4290. }
  4291. else if (posX >= -2997.470) and (posY >= -1115.580) and (posZ >= -47.917) and (posX <= -2178.690) and (posY <= -971.913) and (posZ <= 576.083)
  4292. {
  4293. ZoneName := "Mount Chiliad"
  4294. }
  4295. else if (posX >= -2178.690) and (posY >= -1771.660) and (posZ >= -47.917) and (posX <= -1936.120) and (posY <= -1250.970) and (posZ <= 576.083)
  4296. {
  4297. ZoneName := "Mount Chiliad"
  4298. }
  4299. else if (posX >= -1794.920) and (posY >= -730.118) and (posZ >= -3.0) and (posX <= -1213.910) and (posY <= -50.096) and (posZ <= 200.000)
  4300. {
  4301. ZoneName := "Easter Bay Airport"
  4302. }
  4303. else if (posX >= -947.980) and (posY >= -304.320) and (posZ >= -1.1) and (posX <= -319.676) and (posY <= 327.071) and (posZ <= 200.000)
  4304. {
  4305. ZoneName := "The Panopticon"
  4306. }
  4307. else if (posX >= -1820.640) and (posY >= -2643.680) and (posZ >= -8.0) and (posX <= -1226.780) and (posY <= -1771.660) and (posZ <= 200.000)
  4308. {
  4309. ZoneName := "Shady Creeks"
  4310. }
  4311. else if (posX >= -1166.970) and (posY >= -2641.190) and (posZ >= 0.000) and (posX <= -321.744) and (posY <= -1856.030) and (posZ <= 200.000)
  4312. {
  4313. ZoneName := "Back o Beyond"
  4314. }
  4315. else if (posX >= -2994.490) and (posY >= -2189.910) and (posZ >= -47.917) and (posX <= -2178.690) and (posY <= -1115.580) and (posZ <= 576.083)
  4316. {
  4317. ZoneName := "Mount Chiliad"
  4318. }
  4319. else if (posX >= -1213.910) and (posY >= 596.349) and (posZ >= -242.990) and (posX <= -480.539) and (posY <= 1659.680) and (posZ <= 900.000)
  4320. {
  4321. ZoneName := "Tierra Robada"
  4322. }
  4323. else if (posX >= -1213.910) and (posY >= -2892.970) and (posZ >= -242.990) and (posX <= 44.615) and (posY <= -768.027) and (posZ <= 900.000)
  4324. {
  4325. ZoneName := "Flint County"
  4326. }
  4327. else
  4328. {
  4329. ZoneName := "Unbekannt"
  4330. }
  4331. return ZoneName
  4332.  
  4333. return
  4334. }
  4335. GetChatLine(0, Line0)
  4336. GetChatLine(1, Line1)
  4337. GetChatLine(2, Line2)
  4338. GetPlayerName(Name)
  4339. HP := GetPlayerHealth()
  4340. Loop, read, %A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  4341. {
  4342. last_line := A_LoopReadLine
  4343. }
  4344. IfInString, last_line, %Name%'s Handy klingelt
  4345. {
  4346. if(CheckCall = 1)
  4347. {
  4348. IniRead, Callsound, settings.ini, Sounds, Callsound
  4349. if(A_OSVersion != "WIN_XP")
  4350. {
  4351. SoundSetWaveVolume, %VolCall%
  4352. }
  4353. Soundplay, %CallSound%
  4354. Sleep 1000
  4355. FileAppend, Zeile fur Keybinder `n,%A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  4356. }
  4357. }
  4358. IfInString, last_line, Sender:
  4359. {
  4360. if not InStr(last_line, "Sender: " Name)
  4361. {
  4362. if(CheckSMS = 1)
  4363. {
  4364. IniRead, SMSsound, settings.ini, Sounds, SMSsound
  4365. if(A_OSVersion != "WIN_XP")
  4366. {
  4367. SoundSetWaveVolume, %VolSMS%
  4368. }
  4369. Soundplay, %SMSsound%
  4370. Sleep 1000
  4371. FileAppend, Zeile fur Keybinder ,%A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  4372. }
  4373. }
  4374. }
  4375. If ((InStr(last_line, "ben철tigt Verst채rkung in") && not InStr(last_line, "" . Name . " ben?igt Verst?kung in ")) || (InStr(Line1, "ben?igt Verst?kung in") && not InStr(last_line, "" . Name . " ben?igt Verst?kung in")))
  4376. {
  4377. If(CheckBK = 1)
  4378. {
  4379. if(BKsoundan == 0)
  4380. {
  4381. IniRead, BKsound, settings.ini, Sounds, BKsound
  4382. if(A_OSVersion != "WIN_XP")
  4383. {
  4384. SoundSetWaveVolume, %VolBK%
  4385. }
  4386. SoundPlay, %BKsound%
  4387. Sleep, 500
  4388. FileAppend, Zeile fur Keybinder ,%A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  4389. BKsoundan := 1
  4390. BKCountdown := 14
  4391. }
  4392. }
  4393. }
  4394. if(BKsoundan == 1)
  4395. {
  4396. BKCountdown--
  4397. if(BKCountdown < 1)
  4398. {
  4399. BKsoundan := 0
  4400. }
  4401. }
  4402. If (InStr(Line0, "WARNUNG: H? auf zu Spamen, sonst wirst du gekickt!") || InStr(Line1, "WARNUNG: H? auf zu Spamen, sonst wirst du gekickt!"))
  4403. {
  4404. BlockChatInput(True)
  4405. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} AntiSpamKick-System {00FF00}aktiviert{FFFFFF}.")
  4406. Sleep, 1500
  4407. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} AntiSpamKick-System {FF0000}deaktiviert{FFFFFF}.")
  4408. BlockChatInput(False)
  4409. }
  4410. If (InStr(Line0, "Der Gespr채chspartner hat aufgelegt"))
  4411. {
  4412. Soundplay, avixa.avi
  4413. }
  4414. if(CheckLowHP = 1)
  4415. {
  4416. if(LowHPsoundan = 0)
  4417. {
  4418. if(HP < 47.0 && HP != -1)
  4419. {
  4420. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} WARNUNG: {FFFFFF}Du hast nur noch {FFBF00}" GetPlayerHealth() " HP{FFFFFF}. Heil dich schnell!")
  4421. IniRead, LowHPsound, settings.ini, Sounds, LowHPsound
  4422. if(A_OSVersion != "WIN_XP")
  4423. {
  4424. SoundSetWaveVolume, %VolLowHP%
  4425. }
  4426. SoundPlay, %LowHPsound%
  4427. LowHPsoundan := 1
  4428. }
  4429. }
  4430. }
  4431. if(LowHPsoundan = 1)
  4432. {
  4433. if(HP > 47)
  4434. {
  4435. LowHPsoundan := 0
  4436. SoundPlay, avixa.avi
  4437. }
  4438. }
  4439. if(HP == 0)
  4440. {
  4441. bkon = 0
  4442. swatmode := 0
  4443. }
  4444.  
  4445. If (InStr(Line0, "|=================||============||=================|") || InStr(Line1, "|=================||============||=================|"))
  4446. {
  4447. if(InStr(Line0, "|Gehaltscheck|"))
  4448. {
  4449. return
  4450. }
  4451. Loop
  4452. {
  4453. GetChatLine(A_Index - 1, chat)
  4454. if(InStr(chat, "KFZ Steuer:"))
  4455. {
  4456. RegExMatch(chat, "KFZ Steuer: -(.*)\$", kfz)
  4457. }
  4458. if(InStr(chat, "Lohn: "))
  4459. {
  4460. RegExMatch(chat, "Lohn: (.*)\$ Miete: -(.*)\$ Lohnsteuer: -(.*)\$", rest)
  4461. }
  4462. if(InStr(chat, "Stromrechnung: "))
  4463. {
  4464. RegExMatch(chat, "Stromrechnung: -(.*)\$", strom)
  4465. }
  4466. if(Instr(chat, "|================| Gehalts-Check |================|"))
  4467. {
  4468. break
  4469. }
  4470. }
  4471. Gehalt=%rest1%
  4472. Gehalt-=%rest2%
  4473. Gehalt-=%rest3%
  4474. Gehalt-=%kfz1%
  4475. Gehalt-=%strom1%
  4476. sleep, 250
  4477. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} {15A170}[Gehaltscheck]{FFFFFF} Du hast {FFBF00}" . Gehalt . "{FFFFFF}$ verdient.")
  4478. }
  4479.  
  4480.  
  4481. if(SpeedCheckStatus == "1")
  4482. {
  4483. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  4484. {
  4485. return
  4486. }
  4487. VehSpeed := GetPlayerSpeed()
  4488. if(IsPlayerDriver() == 1)
  4489. {
  4490. if (VehSpeed <= VehSpeedMax)
  4491. {
  4492. SendInput, {W Down}
  4493. }
  4494. else if (VehSpeed > VehSpeedMax)
  4495. {
  4496. SendInput, {W Up}
  4497. }
  4498. }
  4499. else
  4500. {
  4501. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF}, Du bist nicht der Fahrer eines Fahrzeuges. Der Tempomat wurde deaktiviert.")
  4502. SpeedCheckStatus := "0"
  4503. SpeedOnOff := "0"
  4504. Sleep, 250
  4505. SendInput {W up}
  4506. }
  4507. }
  4508.  
  4509.  
  4510.  
  4511. if(InStr(line0, "Strafpunkte eingetragen, Grund: ") && InStr(line0, "" . name . " hat "))
  4512. {
  4513. RegExMatch(line0, "hat (.*) (.*) Strafpunkte eingetragen, Grund\: (.*)", params)
  4514. if(params1 != Name)
  4515. {
  4516. IniRead, Punkte, Statistik.ini, Vergaben, Punkte
  4517. Punkte += params2
  4518. IniWrite, %Punkte%, Statistik.ini, Vergaben, Punkte
  4519. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" Punkte "{FFFFFF} Punkte vergeben.")
  4520. }
  4521. }
  4522.  
  4523.  
  4524. if(InStr(line0, "* Du hast ") && InStr(line0, "ein Ticket f?") && InStr(line0, "$ gegeben, Grund:"))
  4525. {
  4526. IniRead, Tickets, Statistik.ini, Vergaben, Tickets
  4527. Tickets++
  4528. IniWrite, %Tickets%, Statistik.ini, Vergaben, Tickets
  4529. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" Tickets "{FFFFFF} Tickets ausgestellt.")
  4530. }
  4531.  
  4532.  
  4533. if(InStr(line0, "hat dein") && InStr(line0, "$ bezahlt."))
  4534. {
  4535. RegExMatch(line0, "\* (.*) hat dein (.*)\$ bezahlt.", verdientesGeld)
  4536. if(verdientesGeld2 > 0 && verdientesGeld2 != "" && verdientesGeld2 != " ")
  4537. {
  4538. IniRead, TicketGeld, Statistik.ini, Vergaben, TicketGeld
  4539. TicketGeld += verdientesGeld2
  4540. IniWrite, %TicketGeld%, Statistik.ini, Vergaben, TicketGeld
  4541. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" TicketGeld "{FFFFFF}$ durch Tickets verdient.")
  4542. }
  4543. }
  4544.  
  4545. if(InStr(line0, "schie? mit seinen Elektroschocker auf"))
  4546. {
  4547. RegExMatch(line0, "" Name " schie? mit seinen Elektroschocker auf (.*) und setzt ihn unter Strom.", params)
  4548. GetPlayerName(name)
  4549. if(params1 == name)
  4550. {
  4551. IniRead, Tazer, Statistik.ini, Tazer, Tazer
  4552. Tazer++
  4553. IniWrite, %Tazer%, Statistik.ini, Tazer, Tazer
  4554. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" Tazer "{FFFFFF} Personen getazert.")
  4555. }
  4556. }
  4557.  
  4558. if(InStr(line1, " " . Name . " hat den Verd?htigen") && InStr(line1, "offline eingesperrt."))
  4559. {
  4560. RegExMatch(line1, " " Name " hat den Verd?htigen (.*) offline eingesperrt.", Spieler)
  4561. IniRead, OffArrest, Statistik.ini, Arrests, OffArrest
  4562. OffArrest++
  4563. IniWrite, %OffArrest%, Statistik.ini, Arrests, OffArrest
  4564. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast {FFBF00}" Spieler1 "{FFFFFF} Off-Arrestet. Off Arrest Nummer {FFBF00}" OffArrest ".")
  4565. Sleep, 250
  4566. }
  4567.  
  4568.  
  4569. if(Instr(line1, "[HQ]:") && InStr(line1, " " . Name . " hat den Verd?htigen") && InStr(line1, "get?et."))
  4570. {
  4571. RegExMatch(line1, " " Name " hat den Verd?htigen (.*) get?et.", Spieler)
  4572. IniRead, VerbrecherKills, Statistik.ini, VerbrecherKills, VerbrecherKills
  4573. IniRead, Kills, Statistik.ini, Kills, Kills
  4574. VerbrecherKills++
  4575. Kills++
  4576. IniWrite, %VerbrecherKills%, Statistik.ini, VerbrecherKills, VerbrecherKills
  4577. IniWrite, %Kills%, Statistik.ini, Kills, Kills
  4578. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast {FFBF00}" Spieler1 "{FFFFFF} get?et, Verbrecher Kill Nummer {FFBF00}" VerbrecherKills "{FFFFFF}.")
  4579. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dies war dein {FFBF00}" Kills "{FFFFFF}. Kill.")
  4580. }
  4581.  
  4582.  
  4583. if(InStr(line1, " " . name . " hat den Verd?htigen ") && InStr(line1, "eingesperrt."))
  4584. {
  4585. RegExMatch(line0, "Haftzeit: (.*) Minuten, Geldstrafe: (.*)\$.", param) && RegExMatch(line1, " " Name " hat den Verd?htigen (.*) eingesperrt.", Spieler)
  4586. if(param2 != 0 && param2 > 0)
  4587. {
  4588. IniRead, DeathArrest, Statistik.ini, Arrests, DeathArrest
  4589. DeathArrest++
  4590. IniWrite, %DeathArrest%, Statistik.ini, Arrests, DeathArrest
  4591. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast {FFBF00}" Spieler1 "{FFFFFF} Tot eingesperrt. Death-Arrest Nummer {FFBF00}" DeathArrest ".")
  4592. Sleep, 250
  4593. }
  4594. }
  4595.  
  4596. if(TankZoll == 1)
  4597. {
  4598. goto, TankstelleZoll
  4599. }
  4600. return
  4601.  
  4602. if(TankZoll == 1)
  4603. {
  4604. goto, TankstelleZoll
  4605. }
  4606.  
  4607. if(IsPlayerInRangeOfPoint_fast(1163.2358,-1323.2552,15.3945, 10))
  4608. {
  4609. loop, 1
  4610. IniRead, Deaths, Statistik.ini, deaths, Deaths,
  4611. deaths++
  4612. Iniwrite, %Deaths%, Statistik.ini, deaths, Deaths
  4613. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dies war dein {FFBF00}" Deaths "{FFFFFF}. Tot.")
  4614. }
  4615. return
  4616.  
  4617. TankstelleZoll:
  4618. if(Freigabe == 1)
  4619. {
  4620. if(IsPlayerInAnyVehicle() && IsPlayerDriver())
  4621. {
  4622. if(IsPlayerInRangeOfPoint_fast(614.7936,1689.5481,6.5567, 10) || IsPlayerInRangeOfPoint_fast(-1328.5437,2677.2109,49.6285, 10) || IsPlayerInRangeOfPoint_fast(1595.7455,2198.9319,10.3875, 10) || IsPlayerInRangeOfPoint_fast(2202.3479,2473.9041,10.3849, 10) || IsPlayerInRangeOfPoint_fast(2113.8887,920.1363,10.3840, 10) || IsPlayerInRangeOfPoint_fast(-2408.7478,975.8612,44.8655, 10) || IsPlayerInRangeOfPoint_fast(-2029.3025,156.4132,28.4108, 10) || IsPlayerInRangeOfPoint_fast(-1676.3165,414.2832,6.7490, 10) || IsPlayerInRangeOfPoint_fast(1004.1802,-939.2733,41.7504, 10) || IsPlayerInRangeOfPoint_fast(1944.1013,-1772.9907,12.9622, 10) || IsPlayerInRangeOfPoint_fast(-90.6283,-1169.5378,1.9707, 10) || IsPlayerInRangeOfPoint_fast(-1605.3982,-2714.4424,48.5335, 10) || IsPlayerInRangeOfPoint_fast(-2243.8896,-2560.5569,31.9219, 10) || IsPlayerInRangeOfPoint_fast(1380.9418,457.1429,19.4861, 10) || IsPlayerInRangeOfPoint_fast(70.4341,1218.6842,18.3743, 10) || IsPlayerInRangeOfPoint_fast(1555.4310,-1605.5901,13.1827, 10))
  4623. {
  4624. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du kannst jetzt dein Fahrzeug betanken. Dr?k '{FFBF00}X{FFFFFF}' zum best?igen.")
  4625. KeyWait, X, D, T10
  4626. if !Errorlevel
  4627. {
  4628. Freigabe := 0
  4629. if(IsVehicleEngineEnabled() == 1)
  4630. {
  4631. SendChat("/motor")
  4632. }
  4633. SendChat("/fill")
  4634. Sleep, 10000
  4635. SendChat("/motor")
  4636. Sleep, 2600
  4637. SendChat("/licht")
  4638. SetTimer, Z?ler, 5000
  4639. Var := 0
  4640. }
  4641. else
  4642. {
  4643. Freigabe := 1
  4644. }
  4645. }
  4646. else if(IsPlayerInRangeOfPoint_fast(1733.4684,546.3726,26.2758, 10) || IsPlayerInRangeOfPoint_fast(1741.1063,543.4731,26.3013, 10) || IsPlayerInRangeOfPoint_fast(1744.0303,523.6337,27.3567, 10) || IsPlayerInRangeOfPoint_fast(1752.7092,521.6908,27.3102, 10) || IsPlayerInRangeOfPoint_fast(512.5435,476.6207,18.4921, 10) || IsPlayerInRangeOfPoint_fast(529.2228,467.2050,18.5020, 10) || IsPlayerInRangeOfPoint_fast(-159.7899,414.1762,11.6441, 10) || IsPlayerInRangeOfPoint_fast(-157.4410,392.2368,11.6423, 10) || IsPlayerInRangeOfPoint_fast(-1408.2322,824.1868,46.9611, 10) || IsPlayerInRangeOfPoint_fast(-1414.7716,803.5920,46.8070, 10) || IsPlayerInRangeOfPoint_fast(-2695.0493,1284.6304,54.9936, 10) || IsPlayerInRangeOfPoint_fast(-2686.3394,1284.2363,54.9928, 10) || IsPlayerInRangeOfPoint_fast(-2676.6162,1265.3683,54.9934, 10) || IsPlayerInRangeOfPoint_fast(-2668.1848,1264.9076,54.9993, 10) || IsPlayerInRangeOfPoint_fast(-963.0773,-343.0494,35.6944, 10) || IsPlayerInRangeOfPoint_fast(-967.9983,-322.3340,35.9383, 10) || IsPlayerInRangeOfPoint_fast(-71.7615,-892.4689,15.3092, 10) || IsPlayerInRangeOfPoint_fast(-68.7422,-867.9615,14.0653, 10) || IsPlayerInRangeOfPoint_fast(100.1979,-1284.3651,13.6976, 10) || IsPlayerInRangeOfPoint_fast(94.4024,-1277.8165,13.6380, 10) || IsPlayerInRangeOfPoint_fast(97.1871,-1254.1139,14.2317, 10) || IsPlayerInRangeOfPoint_fast(94.6934,-1245.5920,14.2429, 10) || IsPlayerInRangeOfPoint_fast(42.7052,-1537.9767,4.7632, 10) || IsPlayerInRangeOfPoint_fast(58.0220,-1524.9335,4.5461, 10))
  4647. {
  4648. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} M?htest du den Zoll jetzt ?fnen? Zum ?fnen '{FFBF00}X{FFFFFF}' dr?ken.")
  4649. KeyWait, X, D, T10
  4650. if !ErrorLevel
  4651. {
  4652. Freigabe := 0
  4653. Sleep, 100
  4654. SendChat("/zoll")
  4655. SetTimer, Z?ler, 5000
  4656. Var := 0
  4657.  
  4658. Sleep, 200
  4659. GetChatLine(0, chat)
  4660. if(InStr(chat, "Es ist keine Zoll Station in deiner N?e"))
  4661. {
  4662. Sleep, 800
  4663. SendChat("/zoll")
  4664. }
  4665. }
  4666. }
  4667. }
  4668. }
  4669. return
  4670.  
  4671. Flugschein:
  4672. IfWinNotActive, GTA:SA:MP
  4673. return
  4674. GetChatLine(0, Chat1)
  4675. If(InStr(Chat1, "Du hast ") && InStr(Chat1, " seinen ") && InStr(Chat1, "Flugschein weggenommen."))
  4676. {
  4677. RegExMatch(Chat1, "Du hast (.*) seinen Flugschein weggenommen.", Name)
  4678. IniRead, Flugschein, Statistik.ini, Scheine, Flugschein
  4679. Flugschein++
  4680. IniWrite, %Flugschein%, Statistik.ini, Scheine, Flugschein
  4681. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FF0000} " . Flugschein . " {FFFFFF} Flugscheine getakt.")
  4682. }
  4683. return
  4684.  
  4685.  
  4686. Bootschein:
  4687. IfWinNotActive, GTA:SA:MP
  4688. return
  4689. GetChatLine(0, Chat1)
  4690. If(InStr(Chat1, "Du hast ") && InStr(Chat1, " seinen ") && InStr(Chat1, "Bootschein weggenommen."))
  4691. {
  4692. RegExMatch(Chat1, "Du hast (.*) seinen Bootschein weggenommen.", Name)
  4693. IniRead, Bootschein, Statistik.ini, Scheine, Bootschein
  4694. Bootschein++
  4695. IniWrite, %Bootschein%, Statistik.ini, Scheine, Bootschein
  4696. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] Du hast bereits {FF0000} " . Bootschein . "{FFFFFF} Bootscheine getakt.")
  4697. }
  4698. return
  4699.  
  4700.  
  4701. Waffenschein:
  4702. IfWinNotActive, GTA:SA:MP
  4703. return
  4704. GetChatLine(0, Chat1)
  4705. If(InStr(Chat1, "Du hast ") && InStr(Chat1, " seinen ") && InStr(Chat1, "Waffenschein weggenommen."))
  4706. {
  4707. RegExMatch(Chat1, "Du hast (.*) seinen Waffenschein weggenommen.", Name)
  4708. IniRead, Waffenschein, Statistik.ini, Scheine, Waffenschein
  4709. IniRead, W_Schaden, Statistik.ini, Scheine, W_Schaden
  4710. Waffenschein++
  4711. W_Schaden+=36000
  4712. IniWrite, %Waffenschein%, Statistik.ini, Scheine, Waffenschein
  4713. IniWrite, %W_Schaden%, Statistik.ini, Scheine, W_Schaden
  4714. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Waffenschein . " {FFFFFF} Waffenscheine getakt.")
  4715. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Die Geldsumme bel?ft sich auf {FFBF00}" W_Schaden "{FFFFFF}$.")
  4716.  
  4717. }
  4718. return
  4719.  
  4720.  
  4721. Z?ler:
  4722. var++
  4723. if(var = 4 || var > 4)
  4724. {
  4725. SetTimer, Z?ler, off
  4726. Freigabe := 1
  4727. }
  4728. return
  4729.  
  4730.  
  4731.  
  4732. Partner:
  4733. countdown--
  4734. if(countdown == 0)
  4735. {
  4736. SetTimer, Partner, off
  4737. }
  4738. else
  4739. {
  4740. FormatTime, Monat,,MM
  4741. GetChatLine(0, ChatLine0)
  4742. GetChatLine(1, ChatLine1)
  4743. GetPlayerName(name)
  4744. if(InStr(ChatLine1, " " . name . " hat den Verd?htigen ") && InStr(ChatLine1, "eingesperrt."))
  4745. {
  4746. RegExMatch(ChatLine1, "" . Name . " hat den Verd?htigen (.*) eingesperrt.", Opfer)
  4747. IniRead, Steuersatz, settings.ini, Steuern, Steuersatz
  4748. SetTimer, #Partner, off
  4749. RegExMatch(ChatLine0, "Haftzeit: (.*) Minuten, Geldstrafe: 0\$.", zeit)
  4750.  
  4751.  
  4752. if(zeit1 > 104)
  4753. {
  4754. Wanted = 104
  4755. }
  4756. else
  4757. {
  4758. Wanted = %zeit1%
  4759. }
  4760. Wanted /= 4
  4761. Wanted *= 750
  4762. Geld = %Wanted%
  4763. Geld *= %Steuersatz%
  4764. Geld := Floor(Geld)
  4765.  
  4766.  
  4767. if(Partner1 > -1 && Partner2 > -1 && Partner3 > -1)
  4768. {
  4769. Geld /= 4
  4770. Geld := Floor(Geld)
  4771. SendChat("/pay " . Partner1 . " " . Geld . "")
  4772. Sleep, 500
  4773. SendChat("/pay " . Partner2 . " " . Geld . "")
  4774. Sleep, 500
  4775. SendChat("/pay " . Partner3 . " " . Geld . "")
  4776. }
  4777. else if(Partner1 > -1 && Partner2 > -1 && Partner3 == -1)
  4778. {
  4779. Geld /= 3
  4780. Geld := Floor(Geld)
  4781. SendChat("/pay " . Partner1 . " " . Geld . "")
  4782. SendChat("/pay " . Partner2 . " " . Geld . "")
  4783. }
  4784. else if(Partner1 > -1 && Partner2 == -1 && Partner3 > -1)
  4785. {
  4786. Geld /= 3
  4787. Geld := Floor(Geld)
  4788. SendChat("/pay " . Partner1 . " " . Geld . "")
  4789. SendChat("/pay " . Partner3 . " " . Geld . "")
  4790. }
  4791. else if(Partner1 > -1 && Partner2 == -1 && Partner3 == -1)
  4792. {
  4793. Geld /= 2
  4794. Geld := Floor(Geld)
  4795. SendChat("/pay " . Partner1 . " " . Geld . "")
  4796. }
  4797. else if(Partner1 == -1 && Partner2 > -1 && Partner3 > -1)
  4798. {
  4799. Geld /= 3
  4800. Geld := Floor(Geld)
  4801. SendChat("/pay " . Partner2 . " " . Geld . "")
  4802. SendChat("/pay " . Partner3 . " " . Geld . "")
  4803. }
  4804. else if(Partner1 == -1 && Partner2 > -1 && Partner3 == -1)
  4805. {
  4806. Geld /= 2
  4807. Geld := Floor(Geld)
  4808. SendChat("/pay " . Partner2 . " " . Geld . "")
  4809. }
  4810. else if(Partner1 == -1 && Partner2 == -1 && Partner3 > -1)
  4811. {
  4812. Geld /= 2
  4813. Geld := Floor(Geld)
  4814. SendChat("/pay " . Partner3 . " " . Geld . "")
  4815. }
  4816.  
  4817. Sleep, 200
  4818. IniRead, Arrest, Statistik.ini, Arrests, Arrest
  4819. IniRead, Arrests, Statistik.ini, %A_MM%, Arrests
  4820. Arrest++
  4821. Arrests++
  4822. IniWrite, %Arrest%, Statistik.ini, Arrests, Arrest
  4823. IniWrite, %Arrests%, Statistik.ini, %A_MM%, Monat
  4824. IniRead, Money, Statistik.ini, Arrests, Money
  4825. Money += Geld
  4826. IniWrite, %Money%, Statistik.ini, Arrests, Money
  4827. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Gesamt eingesperrte Verbrecher: {FFBF00}" Arrest "{FFFFFF}.")
  4828. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Durch Festnahmen erworbener gesamt Lohn: {FFBF00}" Money "{FFFFFF}.")
  4829.  
  4830.  
  4831. sleep, 250
  4832. }
  4833. Sleep 200
  4834. SetTimer, Partner, off
  4835. }
  4836. return
  4837.  
  4838.  
  4839. CheckHealth:
  4840. HP := GetPlayerHealth()
  4841. if(HP > 30)
  4842. {
  4843. LowHPsoundan := 0
  4844. SetTimer, CheckHealth, off
  4845. SoundPlay, avixa.avi
  4846. }
  4847. return
  4848.  
  4849.  
  4850.  
  4851.  
  4852.  
  4853.  
  4854.  
  4855. :?:/sani::
  4856. Suspend Permit
  4857. SendInput ^a{delete}{enter}
  4858.  
  4859. if(PoliceID != "X")
  4860. {
  4861. if(text != "-1")
  4862. {
  4863. SendChat("/hq " . text . "")
  4864. }
  4865. }
  4866. else
  4867. {
  4868. SendChat("/d Ich ben?ige DRINGEND einen Sanit?er.")
  4869. }
  4870. SendChat("/service")
  4871. Sleep, 250
  4872. SendInput {Enter}
  4873. return
  4874.  
  4875.  
  4876.  
  4877. ErmittelPartnerZahl()
  4878. {
  4879. global
  4880. AnzahlPartner := 0
  4881. if(Partner1 > -1)
  4882. {
  4883. AnzahlPartner++
  4884. }
  4885. if(Partner2 > -1)
  4886. {
  4887. AnzahlPartner++
  4888. }
  4889. if(Partner3 > -1)
  4890. {
  4891. AnzahlPartner++
  4892. }
  4893. return AnzahlPartner
  4894. }
  4895.  
  4896.  
  4897. :?:/streife::
  4898. Suspend Permit
  4899. if(streife == 0)
  4900. {
  4901. Einheit := PlayerInput("Deine Einheit: ")
  4902. if(Einheit == "" || Einheit == " ")
  4903. {
  4904. return
  4905. }
  4906. else if(Einheit != "JOHN" && Einheit != "TOM" && Einheit != "HENRY" && Einheit != "ROBERT" && Einheit != "OMEGA" && Einheit != "DELTA" && != "GEORGE" && Einheit != "ALPHA")
  4907. {
  4908. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Bitte verwende eine g?tige Einheit (ALPHA, OMEGA, DELTA, JOHN, TOM, HENRY, ROBERT oder GEORGE).")
  4909. return
  4910. }
  4911. StringUpper, Einheit, Einheit
  4912. Streifennummer := PlayerInput("Deine Streifennummer: ")
  4913. if(Streifennummer == "" || Streifennummer == " ")
  4914. {
  4915. return
  4916. }
  4917. AnzahlPartner := ErmittelPartnerZahl()
  4918. AnzahlPersonen := 1 + AnzahlPartner
  4919.  
  4920. PoliceID := "" . Streifennummer . "-" . Einheit . "-" . AnzahlPersonen . ""
  4921. SendChat("/f Einheit " . PoliceID . ": Start of Watch")
  4922. streife := 1
  4923. }
  4924. else
  4925. {
  4926. SendChat("/f Einheit " . PoliceID . ": End of Watch")
  4927. streife := 0
  4928. PoliceID := "X"
  4929. Einheit := ""
  4930. Streifennummer := ""
  4931. }
  4932. return
  4933.  
  4934. :?:/setEinheit::
  4935. Suspend Permit
  4936. if(streife == 0)
  4937. {
  4938. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Starte vorher bitte eine Streife mit {FF0000}/streife{FFFFFF}.")
  4939. return
  4940. }
  4941. Einheit := PlayerInput("W?le deine neue Einheit aus: ")
  4942. if(Einheit == "" || Einheit == " ")
  4943. {
  4944. return
  4945. }
  4946. else if(Einheit != "JOHN" && Einheit != "TOM" && Einheit != "HENRY" && Einheit != "ROBERT" && Einheit != "OMEGA" && != "DELTA" && != "GEORGE" && Einheit != "ALPHA")
  4947. {
  4948. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Bitte verwende eine g?tige Einheit (ALPHA, OMEGA, DELTA, JOHN, TOM, HENRY, ROBERT oder GEORGE).")
  4949. return
  4950. }
  4951. StringUpper, Einheit, Einheit
  4952. PoliceID := "" . Streifennummer . "-" . Einheit . "-" . AnzahlPersonen . ""
  4953. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Neue Streifenkennung: {FF0000}" PoliceID "")
  4954. return
  4955.  
  4956. :?:/setNummer::
  4957. Suspend Permit
  4958. if(streife == 0)
  4959. {
  4960. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Starte vorher bitte eine Streife mit {FF0000}/streife{FFFFFF}.")
  4961. return
  4962. }
  4963. Streifennummer := PlayerInput("Deine Streifennummer: ")
  4964. if(Streifennummer == "" || Streifennummer == " ")
  4965. {
  4966. return
  4967. }
  4968. PoliceID := "" . Streifennummer . "-" . Einheit . "-" . AnzahlPersonen . ""
  4969. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Neue Streifenkennung: {FF0000}" PoliceID "")
  4970. return
  4971.  
  4972. :?:/setPersonen::
  4973. Suspend Permit
  4974. if(streife == 0)
  4975. {
  4976. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Starte vorher bitte eine Streife mit {FF0000}/streife{FFFFFF}.")
  4977. return
  4978. }
  4979. AnzahlPersonen := PlayerInput("Anzahl deiner Partner: ")
  4980. if(AnzahlPersonen == "" || AnzahlPersonen == " ")
  4981. {
  4982. return
  4983. }
  4984. AnzahlPersonen++
  4985. PoliceID := "" . Streifennummer . "-" . Einheit . "-" . AnzahlPersonen . ""
  4986. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Neue Streifenkennung: {FF0000}" PoliceID "")
  4987. return
  4988.  
  4989. :?:/kennung::
  4990. Suspend Permit
  4991. if(Streife == 0)
  4992. {
  4993. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast noch keine Streife gestartet.")
  4994. }
  4995. else
  4996. {
  4997. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Deine aktuelle Streifenkennung lautet: {FF0000}" PoliceID "")
  4998. }
  4999. return
  5000.  
  5001.  
  5002.  
  5003. WheelRight::
  5004. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5005. {
  5006. return
  5007. }
  5008. if(wBind1 != "" || wBind1 != """" || wBind1 != "ERROR")
  5009. {
  5010. FormatTime, Zeit,,HH:mm
  5011. FormatTime, Datum,,dd.MM.yyyy
  5012.  
  5013.  
  5014. Car := GetVehicleHealth()
  5015. StringReplace, wBind1, wBind1, <name>, %Name%, All
  5016. StringReplace, wBind1, wBind1, <hp>, %HP%, All
  5017. StringReplace, wBind1, wBind1, <car>, %Car%, All
  5018. StringReplace, wBind1, wBind1, <time>, %Zeit%, All
  5019. StringReplace, wBind1, wBind1, <date>, %Datum%, All
  5020. StringReplace, wBind1, wBind1, <einheit>, "Einheit: " . PoliceID . "", All
  5021. GetZoneName(Zone)
  5022. GetCityName(City)
  5023. Position := "" Zone ", " City
  5024. StringReplace, wBind1, wBind1, <pos>, %Position%, All
  5025.  
  5026. wBind1_1 := ""
  5027. wBind1_2 := ""
  5028. wBind1_3 := ""
  5029. StringSplit, wBind1_, wBind1, #
  5030. if(wBind1_1 != "")
  5031. {
  5032. SendChat("" wBind1_1 "")
  5033. Sleep, 100
  5034. }
  5035. if(wBind1_2 != "")
  5036. {
  5037. SendChat("" wBind1_2 "")
  5038. Sleep, 100
  5039. }
  5040. if(wBind1_3 != "")
  5041. {
  5042. SendChat("" wBind1_3 "")
  5043. }
  5044. }
  5045. return
  5046.  
  5047. WheelLeft::
  5048. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5049. {
  5050. return
  5051. }
  5052. if(wBind2 != "" || wBind2 != """" || wBind2 != "ERROR")
  5053. {
  5054. FormatTime, Zeit,,HH:mm
  5055. FormatTime, Datum,,dd.MM.yyyy
  5056.  
  5057.  
  5058. Car := GetVehicleHealth()
  5059. StringReplace, wBind2, wBind2, <name>, %Name%, All
  5060. StringReplace, wBind2, wBind2, <hp>, %HP%, All
  5061. StringReplace, wBind2, wBind2, <car>, %Car%, All
  5062. StringReplace, wBind2, wBind2, <time>, %Zeit%, All
  5063. StringReplace, wBind2, wBind2, <date>, %Datum%, All
  5064. StringReplace, wBind2, wBind2, <einheit>, "Einheit: " . PoliceID . "", All
  5065. GetZoneName(Zone)
  5066. GetCityName(City)
  5067. Position := "" Zone ", " City
  5068. StringReplace, wBind2, wBind2, <pos>, %Position%, All
  5069.  
  5070. wBind2_1 := ""
  5071. wBind2_2 := ""
  5072. wBind2_3 := ""
  5073. StringSplit, wBind2_, wBind2, #
  5074. if(wBind2_1 != "")
  5075. {
  5076. SendChat("" wBind2_1 "")
  5077. Sleep, 100
  5078. }
  5079. if(wBind2_2 != "")
  5080. {
  5081. SendChat("" wBind2_2 "")
  5082. Sleep, 100
  5083. }
  5084. if(wBind2_3 != "")
  5085. {
  5086. SendChat("" wBind2_3 "")
  5087. }
  5088. }
  5089. return
  5090.  
  5091. XButton1::
  5092. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5093. {
  5094. return
  5095. }
  5096. if(xBind1 != "" || xBind1 != """" || xBind1 != "ERROR")
  5097. {
  5098. FormatTime, Zeit,,HH:mm
  5099. FormatTime, Datum,,dd.MM.yyyy
  5100.  
  5101.  
  5102. Car := GetVehicleHealth()
  5103. StringReplace, xBind1, xBind1, <name>, %Name%, All
  5104. StringReplace, xBind1, xBind1, <hp>, %HP%, All
  5105. StringReplace, xBind1, xBind1, <car>, %Car%, All
  5106. StringReplace, xBind1, xBind1, <time>, %Zeit%, All
  5107. StringReplace, xBind1, xBind1, <date>, %Datum%, All
  5108. StringReplace, xBind1, xBind1, <einheit>, "Einheit: " . PoliceID . "", All
  5109. GetZoneName(Zone)
  5110. GetCityName(City)
  5111. Position := "" Zone ", " City
  5112. StringReplace, xBind1, xBind1, <pos>, %Position%, All
  5113.  
  5114. xBind1_1 := ""
  5115. xBind1_2 := ""
  5116. xBind1_3 := ""
  5117. StringSplit, xBind1_, xBind1, #
  5118. if(xBind1_1 != "")
  5119. {
  5120. SendChat("" xBind1_1 "")
  5121. Sleep, 100
  5122. }
  5123. if(xBind1_2 != "")
  5124. {
  5125. SendChat("" xBind1_2 "")
  5126. Sleep, 100
  5127. }
  5128. if(xBind1_3 != "")
  5129. {
  5130. SendChat("" xBind1_3 "")
  5131. }
  5132. }
  5133. return
  5134.  
  5135. XButton2::
  5136. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5137. {
  5138. return
  5139. }
  5140. if(wBind2 != "" || wBind2 != """" || wBind2 != "ERROR")
  5141. {
  5142. FormatTime, Zeit,,HH:mm
  5143. FormatTime, Datum,,dd.MM.yyyy
  5144.  
  5145.  
  5146. Car := GetVehicleHealth()
  5147. StringReplace, wBind2, wBind2, <name>, %Name%, All
  5148. StringReplace, wBind2, wBind2, <hp>, %HP%, All
  5149. StringReplace, wBind2, wBind2, <car>, %Car%, All
  5150. StringReplace, wBind2, wBind2, <time>, %Zeit%, All
  5151. StringReplace, wBind2, wBind2, <date>, %Datum%, All
  5152. StringReplace, wBind2, wBind2, <einheit>, "Einheit: " . PoliceID . "", All
  5153. GetZoneName(Zone)
  5154. GetCityName(City)
  5155. Position := "" Zone ", " City
  5156. StringReplace, wBind2, wBind2, <pos>, %Position%, All
  5157.  
  5158. wBind2_1 := ""
  5159. wBind2_2 := ""
  5160. wBind2_3 := ""
  5161. StringSplit, wBind2_, wBind2, #
  5162. if(wBind2_1 != "")
  5163. {
  5164. SendChat("" wBind2_1 "")
  5165. Sleep, 100
  5166. }
  5167. if(wBind2_2 != "")
  5168. {
  5169. SendChat("" wBind2_2 "")
  5170. Sleep, 100
  5171. }
  5172. if(wBind2_3 != "")
  5173. {
  5174. SendChat("" wBind2_3 "")
  5175. }
  5176. }
  5177. return
  5178.  
  5179. Key1:
  5180. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5181. {
  5182. return
  5183. }
  5184. if(Bind1 != "" || Bind1 != """" || Bind1 != "ERROR")
  5185. {
  5186. FormatTime, Zeit,,HH:mm
  5187. FormatTime, Datum,,dd.MM.yyyy
  5188.  
  5189.  
  5190. Car := GetVehicleHealth()
  5191. StringReplace, Bind1, Bind1, <name>, %Name%, All
  5192. StringReplace, Bind1, Bind1, <hp>, %HP%, All
  5193. StringReplace, Bind1, Bind1, <car>, %Car%, All
  5194. StringReplace, Bind1, Bind1, <time>, %Zeit%, All
  5195. StringReplace, Bind1, Bind1, <date>, %Datum%, All
  5196. StringReplace, Bind1, Bind1, <einheit>, "Einheit: " . PoliceID . "", All
  5197. GetZoneName(Zone)
  5198. GetCityName(City)
  5199. Position := "" Zone ", " City
  5200. StringReplace, Bind1, Bind1, <pos>, %Position%, All
  5201.  
  5202. if(SendenKey1 == 1)
  5203. {
  5204. Bind1_1 := ""
  5205. Bind1_2 := ""
  5206. Bind1_3 := ""
  5207. StringSplit, Bind1_, Bind1, #
  5208. if(Bind1_1 != "")
  5209. {
  5210. SendChat("" Bind1_1 "")
  5211. Sleep, 100
  5212. }
  5213. if(Bind1_2 != "")
  5214. {
  5215. SendChat("" Bind1_2 "")
  5216. Sleep, 100
  5217. }
  5218. if(Bind1_3 != "")
  5219. {
  5220. SendChat("" Bind1_3 "")
  5221. }
  5222. }
  5223. else
  5224. {
  5225. SendInput, t%Bind1%
  5226. }
  5227. }
  5228. return
  5229.  
  5230. Key2:
  5231. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5232. {
  5233. return
  5234. }
  5235. if(Bind2 != "" || Bind2 != """" || Bind2 != "ERROR")
  5236. {
  5237. FormatTime, Zeit,,HH:mm
  5238. FormatTime, Datum,,dd.MM.yyyy
  5239.  
  5240.  
  5241. Car := GetVehicleHealth()
  5242. StringReplace, Bind2, Bind2, <name>, %Name%, All
  5243. StringReplace, Bind2, Bind2, <hp>, %HP%, All
  5244. StringReplace, Bind2, Bind2, <car>, %Car%, All
  5245. StringReplace, Bind2, Bind2, <time>, %Zeit%, All
  5246. StringReplace, Bind2, Bind2, <date>, %Datum%, All
  5247. StringReplace, Bind2, Bind2, <einheit>, "Einheit: " . PoliceID . "", All
  5248. GetZoneName(Zone)
  5249. GetCityName(City)
  5250. Position := "" Zone ", " City
  5251. StringReplace, Bind2, Bind2, <pos>, %Position%, All
  5252.  
  5253. if(SendenKey2 == 1)
  5254. {
  5255. Bind2_1 := ""
  5256. Bind2_2 := ""
  5257. Bind2_3 := ""
  5258. StringSplit, Bind2_, Bind2, #
  5259. if(Bind2_1 != "")
  5260. {
  5261. SendChat("" Bind2_1 "")
  5262. Sleep, 100
  5263. }
  5264. if(Bind2_2 != "")
  5265. {
  5266. SendChat("" Bind2_2 "")
  5267. Sleep, 100
  5268. }
  5269. if(Bind2_3 != "")
  5270. {
  5271. SendChat("" Bind2_3 "")
  5272. }
  5273. }
  5274. else
  5275. {
  5276. SendInput, t%Bind2%
  5277. }
  5278. }
  5279. return
  5280.  
  5281. Key3:
  5282. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5283. {
  5284. return
  5285. }
  5286. if(Bind3 != "" || Bind3 != """" || Bind3 != "ERROR")
  5287. {
  5288. FormatTime, Zeit,,HH:mm
  5289. FormatTime, Datum,,dd.MM.yyyy
  5290.  
  5291.  
  5292. Car := GetVehicleHealth()
  5293. StringReplace, Bind3, Bind3, <name>, %Name%, All
  5294. StringReplace, Bind3, Bind3, <hp>, %HP%, All
  5295. StringReplace, Bind3, Bind3, <car>, %Car%, All
  5296. StringReplace, Bind3, Bind3, <time>, %Zeit%, All
  5297. StringReplace, Bind3, Bind3, <date>, %Datum%, All
  5298. StringReplace, Bind3, Bind3, <einheit>, "Einheit: " . PoliceID . "", All
  5299. GetZoneName(Zone)
  5300. GetCityName(City)
  5301. Position := "" Zone ", " City
  5302. StringReplace, Bind3, Bind3, <pos>, %Position%, All
  5303.  
  5304. if(SendenKey3 == 1)
  5305. {
  5306. Bind3_1 := ""
  5307. Bind3_2 := ""
  5308. Bind3_3 := ""
  5309. StringSplit, Bind3_, Bind3, #
  5310. if(Bind3_1 != "")
  5311. {
  5312. SendChat("" Bind3_1 "")
  5313. Sleep, 100
  5314. }
  5315. if(Bind3_2 != "")
  5316. {
  5317. SendChat("" Bind3_2 "")
  5318. Sleep, 100
  5319. }
  5320. if(Bind3_3 != "")
  5321. {
  5322. SendChat("" Bind3_3 "")
  5323. }
  5324. }
  5325. else
  5326. {
  5327. SendInput, t%Bind3%
  5328. }
  5329. }
  5330. return
  5331.  
  5332. Key4:
  5333. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5334. {
  5335. return
  5336. }
  5337. if(Bind4 != "" || Bind4 != """" || Bind4 != "ERROR")
  5338. {
  5339. FormatTime, Zeit,,HH:mm
  5340. FormatTime, Datum,,dd.MM.yyyy
  5341.  
  5342.  
  5343. Car := GetVehicleHealth()
  5344. StringReplace, Bind4, Bind4, <name>, %Name%, All
  5345. StringReplace, Bind4, Bind4, <hp>, %HP%, All
  5346. StringReplace, Bind4, Bind4, <car>, %Car%, All
  5347. StringReplace, Bind4, Bind4, <time>, %Zeit%, All
  5348. StringReplace, Bind4, Bind4, <date>, %Datum%, All
  5349. StringReplace, Bind4, Bind4, <einheit>, "Einheit: " . PoliceID . "", All
  5350. GetZoneName(Zone)
  5351. GetCityName(City)
  5352. Position := "" Zone ", " City
  5353. StringReplace, Bind4, Bind4, <pos>, %Position%, All
  5354.  
  5355. if(SendenKey4 == 1)
  5356. {
  5357. Bind4_1 := ""
  5358. Bind4_2 := ""
  5359. Bind4_3 := ""
  5360. StringSplit, Bind4_, Bind4, #
  5361. if(Bind4_1 != "")
  5362. {
  5363. SendChat("" Bind4_1 "")
  5364. Sleep, 100
  5365. }
  5366. if(Bind4_2 != "")
  5367. {
  5368. SendChat("" Bind4_2 "")
  5369. Sleep, 100
  5370. }
  5371. if(Bind4_3 != "")
  5372. {
  5373. SendChat("" Bind4_3 "")
  5374. }
  5375. }
  5376. else
  5377. {
  5378. SendInput, t%Bind4%
  5379. }
  5380. }
  5381. return
  5382.  
  5383. Key5:
  5384. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5385. {
  5386. return
  5387. }
  5388. if(Bind5 != "" || Bind5 != """" || Bind5 != "ERROR")
  5389. {
  5390. FormatTime, Zeit,,HH:mm
  5391. FormatTime, Datum,,dd.MM.yyyy
  5392.  
  5393.  
  5394. Car := GetVehicleHealth()
  5395. StringReplace, Bind5, Bind5, <name>, %Name%, All
  5396. StringReplace, Bind5, Bind5, <hp>, %HP%, All
  5397. StringReplace, Bind5, Bind5, <car>, %Car%, All
  5398. StringReplace, Bind5, Bind5, <time>, %Zeit%, All
  5399. StringReplace, Bind5, Bind5, <date>, %Datum%, All
  5400. StringReplace, Bind5, Bind5, <einheit>, "Einheit: " . PoliceID . "", All
  5401. GetZoneName(Zone)
  5402. GetCityName(City)
  5403. Position := "" Zone ", " City
  5404. StringReplace, Bind5, Bind5, <pos>, %Position%, All
  5405.  
  5406. if(SendenKey5 == 1)
  5407. {
  5408. Bind5_1 := ""
  5409. Bind5_2 := ""
  5410. Bind5_3 := ""
  5411. StringSplit, Bind5_, Bind5, #
  5412. if(Bind5_1 != "")
  5413. {
  5414. SendChat("" Bind5_1 "")
  5415. Sleep, 100
  5416. }
  5417. if(Bind5_2 != "")
  5418. {
  5419. SendChat("" Bind5_2 "")
  5420. Sleep, 100
  5421. }
  5422. if(Bind5_3 != "")
  5423. {
  5424. SendChat("" Bind5_3 "")
  5425. }
  5426. }
  5427. else
  5428. {
  5429. SendInput, t%Bind5%
  5430. }
  5431. }
  5432. return
  5433.  
  5434. Key6:
  5435. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5436. {
  5437. return
  5438. }
  5439. if(Bind6 != "" || Bind6 != """" || Bind6 != "ERROR")
  5440. {
  5441. FormatTime, Zeit,,HH:mm
  5442. FormatTime, Datum,,dd.MM.yyyy
  5443.  
  5444.  
  5445. Car := GetVehicleHealth()
  5446. StringReplace, Bind6, Bind6, <name>, %Name%, All
  5447. StringReplace, Bind6, Bind6, <hp>, %HP%, All
  5448. StringReplace, Bind6, Bind6, <car>, %Car%, All
  5449. StringReplace, Bind6, Bind6, <time>, %Zeit%, All
  5450. StringReplace, Bind6, Bind6, <date>, %Datum%, All
  5451. StringReplace, Bind6, Bind6, <einheit>, "Einheit: " . PoliceID . "", All
  5452. GetZoneName(Zone)
  5453. GetCityName(City)
  5454. Position := "" Zone ", " City
  5455. StringReplace, Bind6, Bind6, <pos>, %Position%, All
  5456.  
  5457. if(SendenKey6 == 1)
  5458. {
  5459. Bind6_1 := ""
  5460. Bind6_2 := ""
  5461. Bind6_3 := ""
  5462. StringSplit, Bind6_, Bind6, #
  5463. if(Bind6_1 != "")
  5464. {
  5465. SendChat("" Bind6_1 "")
  5466. Sleep, 100
  5467. }
  5468. if(Bind6_2 != "")
  5469. {
  5470. SendChat("" Bind6_2 "")
  5471. Sleep, 100
  5472. }
  5473. if(Bind6_3 != "")
  5474. {
  5475. SendChat("" Bind6_3 "")
  5476. }
  5477. }
  5478. else
  5479. {
  5480. SendInput, t%Bind6%
  5481. }
  5482. }
  5483. return
  5484.  
  5485. Key7:
  5486. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5487. {
  5488. return
  5489. }
  5490. if(Bind7 != "" || Bind7 != """" || Bind7 != "ERROR")
  5491. {
  5492. FormatTime, Zeit,,HH:mm
  5493. FormatTime, Datum,,dd.MM.yyyy
  5494. Car := GetVehicleHealth()
  5495. StringReplace, Bind7, Bind7, <name>, %Name%, All
  5496. StringReplace, Bind7, Bind7, <hp>, %HP%, All
  5497. StringReplace, Bind7, Bind7, <car>, %Car%, All
  5498. StringReplace, Bind7, Bind7, <time>, %Zeit%, All
  5499. StringReplace, Bind7, Bind7, <date>, %Datum%, All
  5500. StringReplace, Bind7, Bind7, <einheit>, "Einheit: " . PoliceID . "", All
  5501. GetZoneName(Zone)
  5502. GetCityName(City)
  5503. Position := "" Zone ", " City
  5504. StringReplace, Bind7, Bind7, <pos>, %Position%, All
  5505.  
  5506. if(SendenKey7 == 1)
  5507. {
  5508. Bind7_1 := ""
  5509. Bind7_2 := ""
  5510. Bind7_3 := ""
  5511. StringSplit, Bind7_, Bind7, #
  5512. if(Bind7_1 != "")
  5513. {
  5514. SendChat("" Bind7_1 "")
  5515. Sleep, 100
  5516. }
  5517. if(Bind7_2 != "")
  5518. {
  5519. SendChat("" Bind7_2 "")
  5520. Sleep, 100
  5521. }
  5522. if(Bind7_3 != "")
  5523. {
  5524. SendChat("" Bind7_3 "")
  5525. }
  5526. }
  5527. else
  5528. {
  5529. SendInput, t%Bind7%
  5530. }
  5531. }
  5532. return
  5533.  
  5534. Key8:
  5535. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5536. {
  5537. return
  5538. }
  5539. if(Bind8 != "" || Bind8 != """" || Bind8 != "ERROR")
  5540. {
  5541. FormatTime, Zeit,,HH:mm
  5542. FormatTime, Datum,,dd.MM.yyyy
  5543.  
  5544.  
  5545. Car := GetVehicleHealth()
  5546. StringReplace, Bind8, Bind8, <name>, %Name%, All
  5547. StringReplace, Bind8, Bind8, <hp>, %HP%, All
  5548. StringReplace, Bind8, Bind8, <car>, %Car%, All
  5549. StringReplace, Bind8, Bind8, <time>, %Zeit%, All
  5550. StringReplace, Bind8, Bind8, <date>, %Datum%, All
  5551. StringReplace, Bind8, Bind8, <einheit>, "Einheit: " . PoliceID . "", All
  5552. GetZoneName(Zone)
  5553. GetCityName(City)
  5554. Position := "" Zone ", " City
  5555. StringReplace, Bind8, Bind8, <pos>, %Position%, All
  5556.  
  5557. if(SendenKey8 == 1)
  5558. {
  5559. Bind8_1 := ""
  5560. Bind8_2 := ""
  5561. Bind8_3 := ""
  5562. StringSplit, Bind8_, Bind8, #
  5563. if(Bind8_1 != "")
  5564. {
  5565. SendChat("" Bind8_1 "")
  5566. Sleep, 100
  5567. }
  5568. if(Bind8_2 != "")
  5569. {
  5570. SendChat("" Bind8_2 "")
  5571. Sleep, 100
  5572. }
  5573. if(Bind8_3 != "")
  5574. {
  5575. SendChat("" Bind8_3 "")
  5576. }
  5577. }
  5578. else
  5579. {
  5580. SendInput, t%Bind8%
  5581. }
  5582. }
  5583. return
  5584.  
  5585. Key9:
  5586. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5587. {
  5588. return
  5589. }
  5590. if(Bind9 != "" || Bind9 != """" || Bind9 != "ERROR")
  5591. {
  5592. FormatTime, Zeit,,HH:mm
  5593. FormatTime, Datum,,dd.MM.yyyy
  5594.  
  5595.  
  5596. Car := GetVehicleHealth()
  5597. StringReplace, Bind9, Bind9, <name>, %Name%, All
  5598. StringReplace, Bind9, Bind9, <hp>, %HP%, All
  5599. StringReplace, Bind9, Bind9, <car>, %Car%, All
  5600. StringReplace, Bind9, Bind9, <time>, %Zeit%, All
  5601. StringReplace, Bind9, Bind9, <date>, %Datum%, All
  5602. StringReplace, Bind9, Bind9, <einheit>, "Einheit: " . PoliceID . "", All
  5603. GetZoneName(Zone)
  5604. GetCityName(City)
  5605. Position := "" Zone ", " City
  5606. StringReplace, Bind9, Bind9, <pos>, %Position%, All
  5607.  
  5608. if(SendenKey9 == 1)
  5609. {
  5610. Bind9_1 := ""
  5611. Bind9_2 := ""
  5612. Bind9_3 := ""
  5613. StringSplit, Bind9_, Bind9, #
  5614. if(Bind9_1 != "")
  5615. {
  5616. SendChat("" Bind9_1 "")
  5617. Sleep, 100
  5618. }
  5619. if(Bind9_2 != "")
  5620. {
  5621. SendChat("" Bind9_2 "")
  5622. Sleep, 100
  5623. }
  5624. if(Bind9_3 != "")
  5625. {
  5626. SendChat("" Bind9_3 "")
  5627. }
  5628. }
  5629. else
  5630. {
  5631. SendInput, t%Bind9%
  5632. }
  5633. }
  5634. return
  5635.  
  5636. Key10:
  5637. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5638. {
  5639. return
  5640. }
  5641. if(Bind10 != "" || Bind10 != """" || Bind10 != "ERROR")
  5642. {
  5643. FormatTime, Zeit,,HH:mm
  5644. FormatTime, Datum,,dd.MM.yyyy
  5645.  
  5646.  
  5647. Car := GetVehicleHealth()
  5648. StringReplace, Bind10, Bind10, <name>, %Name%, All
  5649. StringReplace, Bind10, Bind10, <hp>, %HP%, All
  5650. StringReplace, Bind10, Bind10, <car>, %Car%, All
  5651. StringReplace, Bind10, Bind10, <time>, %Zeit%, All
  5652. StringReplace, Bind10, Bind10, <date>, %Datum%, All
  5653. StringReplace, Bind10, Bind10, <einheit>, "Einheit: " . PoliceID . "", All
  5654. GetZoneName(Zone)
  5655. GetCityName(City)
  5656. Position := "" Zone ", " City
  5657. StringReplace, Bind10, Bind10, <pos>, %Position%, All
  5658.  
  5659. if(SendenKey10 == 1)
  5660. {
  5661. Bind10_1 := ""
  5662. Bind10_2 := ""
  5663. Bind10_3 := ""
  5664. StringSplit, Bind10_, Bind10, #
  5665. if(Bind10_1 != "")
  5666. {
  5667. SendChat("" Bind10_1 "")
  5668. Sleep, 100
  5669. }
  5670. if(Bind10_2 != "")
  5671. {
  5672. SendChat("" Bind10_2 "")
  5673. Sleep, 100
  5674. }
  5675. if(Bind10_3 != "")
  5676. {
  5677. SendChat("" Bind10_3 "")
  5678. }
  5679. }
  5680. else
  5681. {
  5682. SendInput, t%Bind10%
  5683. }
  5684. }
  5685. return
  5686.  
  5687. Key11:
  5688. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5689. {
  5690. return
  5691. }
  5692. if(Bind11 != "" || Bind11 != """" || Bind11 != "ERROR")
  5693. {
  5694. FormatTime, Zeit,,HH:mm
  5695. FormatTime, Datum,,dd.MM.yyyy
  5696.  
  5697.  
  5698. Car := GetVehicleHealth()
  5699. StringReplace, Bind11, Bind11, <name>, %Name%, All
  5700. StringReplace, Bind11, Bind11, <hp>, %HP%, All
  5701. StringReplace, Bind11, Bind11, <car>, %Car%, All
  5702. StringReplace, Bind11, Bind11, <time>, %Zeit%, All
  5703. StringReplace, Bind11, Bind11, <date>, %Datum%, All
  5704. StringReplace, Bind11, Bind11, <einheit>, "Einheit: " . PoliceID . "", All
  5705. GetZoneName(Zone)
  5706. GetCityName(City)
  5707. Position := "" Zone ", " City
  5708. StringReplace, Bind11, Bind11, <pos>, %Position%, All
  5709.  
  5710. if(SendenKey11 == 1)
  5711. {
  5712. Bind11_1 := ""
  5713. Bind11_2 := ""
  5714. Bind11_3 := ""
  5715. StringSplit, Bind11_, Bind11, #
  5716. if(Bind11_1 != "")
  5717. {
  5718. SendChat("" Bind11_1 "")
  5719. Sleep, 100
  5720. }
  5721. if(Bind11_2 != "")
  5722. {
  5723. SendChat("" Bind11_2 "")
  5724. Sleep, 100
  5725. }
  5726. if(Bind11_3 != "")
  5727. {
  5728. SendChat("" Bind11_3 "")
  5729. }
  5730. }
  5731. else
  5732. {
  5733. SendInput, t%Bind11%
  5734. }
  5735. }
  5736. return
  5737.  
  5738. Key12:
  5739. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5740. {
  5741. return
  5742. }
  5743. if(Bind12 != "" || Bind12 != """" || Bind12 != "ERROR")
  5744. {
  5745. FormatTime, Zeit,,HH:mm
  5746. FormatTime, Datum,,dd.MM.yyyy
  5747.  
  5748.  
  5749. Car := GetVehicleHealth()
  5750. StringReplace, Bind12, Bind12, <name>, %Name%, All
  5751. StringReplace, Bind12, Bind12, <hp>, %HP%, All
  5752. StringReplace, Bind12, Bind12, <car>, %Car%, All
  5753. StringReplace, Bind12, Bind12, <time>, %Zeit%, All
  5754. StringReplace, Bind12, Bind12, <date>, %Datum%, All
  5755. StringReplace, Bind12, Bind12, <einheit>, "Einheit: " . PoliceID . "", All
  5756. GetZoneName(Zone)
  5757. GetCityName(City)
  5758. Position := "" Zone ", " City
  5759. StringReplace, Bind12, Bind12, <pos>, %Position%, All
  5760.  
  5761. if(SendenKey12 == 1)
  5762. {
  5763. Bind12_1 := ""
  5764. Bind12_2 := ""
  5765. Bind12_3 := ""
  5766. StringSplit, Bind12_, Bind12, #
  5767. if(Bind12_1 != "")
  5768. {
  5769. SendChat("" Bind12_1 "")
  5770. Sleep, 100
  5771. }
  5772. if(Bind12_2 != "")
  5773. {
  5774. SendChat("" Bind12_2 "")
  5775. Sleep, 100
  5776. }
  5777. if(Bind12_3 != "")
  5778. {
  5779. SendChat("" Bind12_3 "")
  5780. }
  5781. }
  5782. else
  5783. {
  5784. SendInput, t%Bind12%
  5785. }
  5786. }
  5787. return
  5788.  
  5789. Key13:
  5790. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5791. {
  5792. return
  5793. }
  5794. if(Bind13 != "" || Bind13 != """" || Bind13 != "ERROR")
  5795. {
  5796. FormatTime, Zeit,,HH:mm
  5797. FormatTime, Datum,,dd.MM.yyyy
  5798.  
  5799.  
  5800. Car := GetVehicleHealth()
  5801. StringReplace, Bind13, Bind13, <name>, %Name%, All
  5802. StringReplace, Bind13, Bind13, <hp>, %HP%, All
  5803. StringReplace, Bind13, Bind13, <car>, %Car%, All
  5804. StringReplace, Bind13, Bind13, <time>, %Zeit%, All
  5805. StringReplace, Bind13, Bind13, <date>, %Datum%, All
  5806. StringReplace, Bind13, Bind13, <einheit>, "Einheit: " . PoliceID . "", All
  5807. GetZoneName(Zone)
  5808. GetCityName(City)
  5809. Position := "" Zone ", " City
  5810. StringReplace, Bind13, Bind13, <pos>, %Position%, All
  5811.  
  5812. if(SendenKey13 == 1)
  5813. {
  5814. Bind13_1 := ""
  5815. Bind13_2 := ""
  5816. Bind13_3 := ""
  5817. StringSplit, Bind13_, Bind13, #
  5818. if(Bind13_1 != "")
  5819. {
  5820. SendChat("" Bind13_1 "")
  5821. Sleep, 100
  5822. }
  5823. if(Bind13_2 != "")
  5824. {
  5825. SendChat("" Bind13_2 "")
  5826. Sleep, 100
  5827. }
  5828. if(Bind13_3 != "")
  5829. {
  5830. SendChat("" Bind13_3 "")
  5831. }
  5832. }
  5833. else
  5834. {
  5835. SendInput, t%Bind13%
  5836. }
  5837. }
  5838. return
  5839.  
  5840. Key14:
  5841. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5842. {
  5843. return
  5844. }
  5845. if(Bind14 != "" || Bind14 != """" || Bind14 != "ERROR")
  5846. {
  5847. FormatTime, Zeit,,HH:mm
  5848. FormatTime, Datum,,dd.MM.yyyy
  5849.  
  5850.  
  5851. Car := GetVehicleHealth()
  5852. StringReplace, Bind14, Bind14, <name>, %Name%, All
  5853. StringReplace, Bind14, Bind14, <hp>, %HP%, All
  5854. StringReplace, Bind14, Bind14, <car>, %Car%, All
  5855. StringReplace, Bind14, Bind14, <time>, %Zeit%, All
  5856. StringReplace, Bind14, Bind14, <date>, %Datum%, All
  5857. StringReplace, Bind14, Bind14, <einheit>, "Einheit: " . PoliceID . "", All
  5858. GetZoneName(Zone)
  5859. GetCityName(City)
  5860. Position := "" Zone ", " City
  5861. StringReplace, Bind14, Bind14, <pos>, %Position%, All
  5862.  
  5863. if(SendenKey14 == 1)
  5864. {
  5865. Bind14_1 := ""
  5866. Bind14_2 := ""
  5867. Bind14_3 := ""
  5868. StringSplit, Bind14_, Bind14, #
  5869. if(Bind14_1 != "")
  5870. {
  5871. SendChat("" Bind14_1 "")
  5872. Sleep, 100
  5873. }
  5874. if(Bind14_2 != "")
  5875. {
  5876. SendChat("" Bind14_2 "")
  5877. Sleep, 100
  5878. }
  5879. if(Bind14_3 != "")
  5880. {
  5881. SendChat("" Bind14_3 "")
  5882. }
  5883. }
  5884. else
  5885. {
  5886. SendInput, t%Bind14%
  5887. }
  5888. }
  5889. return
  5890.  
  5891. Key15:
  5892. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5893. {
  5894. return
  5895. }
  5896. if(Bind15 != "" || Bind15 != """" || Bind15 != "ERROR")
  5897. {
  5898. FormatTime, Zeit,,HH:mm
  5899. FormatTime, Datum,,dd.MM.yyyy
  5900.  
  5901.  
  5902. Car := GetVehicleHealth()
  5903. StringReplace, Bind15, Bind15, <name>, %Name%, All
  5904. StringReplace, Bind15, Bind15, <hp>, %HP%, All
  5905. StringReplace, Bind15, Bind15, <car>, %Car%, All
  5906. StringReplace, Bind15, Bind15, <time>, %Zeit%, All
  5907. StringReplace, Bind15, Bind15, <date>, %Datum%, All
  5908. StringReplace, Bind15, Bind15, <einheit>, "Einheit: " . PoliceID . "", All
  5909. GetZoneName(Zone)
  5910. GetCityName(City)
  5911. Position := "" Zone ", " City
  5912. StringReplace, Bind15, Bind15, <pos>, %Position%, All
  5913.  
  5914. if(SendenKey15 == 1)
  5915. {
  5916. Bind15_1 := ""
  5917. Bind15_2 := ""
  5918. Bind15_3 := ""
  5919. StringSplit, Bind15_, Bind15, #
  5920. if(Bind15_1 != "")
  5921. {
  5922. SendChat("" Bind15_1 "")
  5923. Sleep, 100
  5924. }
  5925. if(Bind15_2 != "")
  5926. {
  5927. SendChat("" Bind15_2 "")
  5928. Sleep, 100
  5929. }
  5930. if(Bind15_3 != "")
  5931. {
  5932. SendChat("" Bind15_3 "")
  5933. }
  5934. }
  5935. else
  5936. {
  5937. SendInput, t%Bind15%
  5938. }
  5939. }
  5940. return
  5941.  
  5942. Key16:
  5943. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5944. {
  5945. return
  5946. }
  5947. if(Bind16 != "" || Bind16 != """" || Bind16 != "ERROR")
  5948. {
  5949. FormatTime, Zeit,,HH:mm
  5950. FormatTime, Datum,,dd.MM.yyyy
  5951.  
  5952.  
  5953. Car := GetVehicleHealth()
  5954. StringReplace, Bind16, Bind16, <name>, %Name%, All
  5955. StringReplace, Bind16, Bind16, <hp>, %HP%, All
  5956. StringReplace, Bind16, Bind16, <car>, %Car%, All
  5957. StringReplace, Bind16, Bind16, <time>, %Zeit%, All
  5958. StringReplace, Bind16, Bind16, <date>, %Datum%, All
  5959. StringReplace, Bind16, Bind16, <einheit>, "Einheit: " . PoliceID . "", All
  5960. GetZoneName(Zone)
  5961. GetCityName(City)
  5962. Position := "" Zone ", " City
  5963. StringReplace, Bind16, Bind16, <pos>, %Position%, All
  5964.  
  5965. if(SendenKey16 == 1)
  5966. {
  5967. Bind16_1 := ""
  5968. Bind16_2 := ""
  5969. Bind16_3 := ""
  5970. StringSplit, Bind16_, Bind16, #
  5971. if(Bind16_1 != "")
  5972. {
  5973. SendChat("" Bind16_1 "")
  5974. Sleep, 100
  5975. }
  5976. if(Bind16_2 != "")
  5977. {
  5978. SendChat("" Bind16_2 "")
  5979. Sleep, 100
  5980. }
  5981. if(Bind16_3 != "")
  5982. {
  5983. SendChat("" Bind16_3 "")
  5984. }
  5985. }
  5986. else
  5987. {
  5988. SendInput, t%Bind16%
  5989. }
  5990. }
  5991. return
  5992.  
  5993. Key17:
  5994. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  5995. {
  5996. return
  5997. }
  5998. if(Bind17 != "" || Bind17 != """" || Bind17 != "ERROR")
  5999. {
  6000. FormatTime, Zeit,,HH:mm
  6001. FormatTime, Datum,,dd.MM.yyyy
  6002. Car := GetVehicleHealth()
  6003. StringReplace, Bind17, Bind17, <name>, %Name%, All
  6004. StringReplace, Bind17, Bind17, <hp>, %HP%, All
  6005. StringReplace, Bind17, Bind17, <car>, %Car%, All
  6006. StringReplace, Bind17, Bind17, <time>, %Zeit%, All
  6007. StringReplace, Bind17, Bind17, <date>, %Datum%, All
  6008. StringReplace, Bind17, Bind17, <einheit>, "Einheit: " . PoliceID . "", All
  6009. GetZoneName(Zone)
  6010. GetCityName(City)
  6011. Position := "" Zone ", " City
  6012. StringReplace, Bind17, Bind17, <pos>, %Position%, All
  6013.  
  6014. if(SendenKey17 == 1)
  6015. {
  6016. Bind17_1 := ""
  6017. Bind17_2 := ""
  6018. Bind17_3 := ""
  6019. StringSplit, Bind17_, Bind17, #
  6020. if(Bind17_1 != "")
  6021. {
  6022. SendChat("" Bind17_1 "")
  6023. Sleep, 100
  6024. }
  6025. if(Bind17_2 != "")
  6026. {
  6027. SendChat("" Bind17_2 "")
  6028. Sleep, 100
  6029. }
  6030. if(Bind17_3 != "")
  6031. {
  6032. SendChat("" Bind17_3 "")
  6033. }
  6034. }
  6035. else
  6036. {
  6037. SendInput, t%Bind17%
  6038. }
  6039. }
  6040. return
  6041.  
  6042. Key18:
  6043. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6044. {
  6045. return
  6046. }
  6047. if(Bind18 != "" || Bind18 != """" || Bind18 != "ERROR")
  6048. {
  6049. FormatTime, Zeit,,HH:mm
  6050. FormatTime, Datum,,dd.MM.yyyy
  6051. Car := GetVehicleHealth()
  6052. StringReplace, Bind18, Bind18, <name>, %Name%, All
  6053. StringReplace, Bind18, Bind18, <hp>, %HP%, All
  6054. StringReplace, Bind18, Bind18, <car>, %Car%, All
  6055. StringReplace, Bind18, Bind18, <time>, %Zeit%, All
  6056. StringReplace, Bind18, Bind18, <date>, %Datum%, All
  6057. StringReplace, Bind18, Bind18, <einheit>, "Einheit: " . PoliceID . "", All
  6058. GetZoneName(Zone)
  6059. GetCityName(City)
  6060. Position := "" Zone ", " City
  6061. StringReplace, Bind18, Bind18, <pos>, %Position%, All
  6062.  
  6063. if(SendenKey18 == 1)
  6064. {
  6065. Bind18_1 := ""
  6066. Bind18_2 := ""
  6067. Bind18_3 := ""
  6068. StringSplit, Bind18_, Bind18, #
  6069. if(Bind18_1 != "")
  6070. {
  6071. SendChat("" Bind18_1 "")
  6072. Sleep, 100
  6073. }
  6074. if(Bind18_2 != "")
  6075. {
  6076. SendChat("" Bind18_2 "")
  6077. Sleep, 100
  6078. }
  6079. if(Bind18_3 != "")
  6080. {
  6081. SendChat("" Bind18_3 "")
  6082. }
  6083. }
  6084. else
  6085. {
  6086. SendInput, t%Bind18%
  6087. }
  6088. }
  6089. return
  6090.  
  6091. Key19:
  6092. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6093. {
  6094. return
  6095. }
  6096. if(Bind19 != "" || Bind19 != """" || Bind19 != "ERROR")
  6097. {
  6098. FormatTime, Zeit,,HH:mm
  6099. FormatTime, Datum,,dd.MM.yyyy
  6100.  
  6101.  
  6102. Car := GetVehicleHealth()
  6103. StringReplace, Bind19, Bind19, <name>, %Name%, All
  6104. StringReplace, Bind19, Bind19, <hp>, %HP%, All
  6105. StringReplace, Bind19, Bind19, <car>, %Car%, All
  6106. StringReplace, Bind19, Bind19, <time>, %Zeit%, All
  6107. StringReplace, Bind19, Bind19, <date>, %Datum%, All
  6108. StringReplace, Bind19, Bind19, <einheit>, "Einheit: " . PoliceID . "", All
  6109. GetZoneName(Zone)
  6110. GetCityName(City)
  6111. Position := "" Zone ", " City
  6112. StringReplace, Bind19, Bind19, <pos>, %Position%, All
  6113.  
  6114. if(SendenKey19 == 1)
  6115. {
  6116. Bind19_1 := ""
  6117. Bind19_2 := ""
  6118. Bind19_3 := ""
  6119. StringSplit, Bind19_, Bind19, #
  6120. if(Bind19_1 != "")
  6121. {
  6122. SendChat("" Bind19_1 "")
  6123. Sleep, 100
  6124. }
  6125. if(Bind19_2 != "")
  6126. {
  6127. SendChat("" Bind19_2 "")
  6128. Sleep, 100
  6129. }
  6130. if(Bind19_3 != "")
  6131. {
  6132. SendChat("" Bind19_3 "")
  6133. }
  6134. }
  6135. else
  6136. {
  6137. SendInput, t%Bind19%
  6138. }
  6139. }
  6140. return
  6141.  
  6142. Key20:
  6143. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6144. {
  6145. return
  6146. }
  6147. if(Bind20 != "" || Bind20 != """" || Bind20 != "ERROR")
  6148. {
  6149. FormatTime, Zeit,,HH:mm
  6150. FormatTime, Datum,,dd.MM.yyyy
  6151.  
  6152.  
  6153. Car := GetVehicleHealth()
  6154. StringReplace, Bind20, Bind20, <name>, %Name%, All
  6155. StringReplace, Bind20, Bind20, <hp>, %HP%, All
  6156. StringReplace, Bind20, Bind20, <car>, %Car%, All
  6157. StringReplace, Bind20, Bind20, <time>, %Zeit%, All
  6158. StringReplace, Bind20, Bind20, <date>, %Datum%, All
  6159. StringReplace, Bind20, Bind20, <einheit>, "Einheit: " . PoliceID . "", All
  6160. GetZoneName(Zone)
  6161. GetCityName(City)
  6162. Position := "" Zone ", " City
  6163. StringReplace, Bind20, Bind20, <pos>, %Position%, All
  6164.  
  6165. if(SendenKey20 == 1)
  6166. {
  6167. Bind20_1 := ""
  6168. Bind20_2 := ""
  6169. Bind20_3 := ""
  6170. StringSplit, Bind20_, Bind20, #
  6171. if(Bind20_1 != "")
  6172. {
  6173. SendChat("" Bind20_1 "")
  6174. Sleep, 100
  6175. }
  6176. if(Bind20_2 != "")
  6177. {
  6178. SendChat("" Bind20_2 "")
  6179. Sleep, 100
  6180. }
  6181. if(Bind20_3 != "")
  6182. {
  6183. SendChat("" Bind20_3 "")
  6184. }
  6185. }
  6186. else
  6187. {
  6188. SendInput, t%Bind20%
  6189. }
  6190. }
  6191. return
  6192.  
  6193. Key21:
  6194. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6195. {
  6196. return
  6197. }
  6198. if(Bind21 != "" || Bind21 != """" || Bind21 != "ERROR")
  6199. {
  6200. FormatTime, Zeit,,HH:mm
  6201. FormatTime, Datum,,dd.MM.yyyy
  6202.  
  6203.  
  6204. Car := GetVehicleHealth()
  6205. StringReplace, Bind21, Bind21, <name>, %Name%, All
  6206. StringReplace, Bind21, Bind21, <hp>, %HP%, All
  6207. StringReplace, Bind21, Bind21, <car>, %Car%, All
  6208. StringReplace, Bind21, Bind21, <time>, %Zeit%, All
  6209. StringReplace, Bind21, Bind21, <date>, %Datum%, All
  6210. StringReplace, Bind21, Bind21, <einheit>, "Einheit: " . PoliceID . "", All
  6211. GetZoneName(Zone)
  6212. GetCityName(City)
  6213. Position := "" Zone ", " City
  6214. StringReplace, Bind21, Bind21, <pos>, %Position%, All
  6215.  
  6216. if(SendenKey21 == 1)
  6217. {
  6218. Bind21_1 := ""
  6219. Bind21_2 := ""
  6220. Bind21_3 := ""
  6221. StringSplit, Bind21_, Bind21, #
  6222. if(Bind21_1 != "")
  6223. {
  6224. SendChat("" Bind21_1 "")
  6225. Sleep, 100
  6226. }
  6227. if(Bind21_2 != "")
  6228. {
  6229. SendChat("" Bind21_2 "")
  6230. Sleep, 100
  6231. }
  6232. if(Bind21_3 != "")
  6233. {
  6234. SendChat("" Bind21_3 "")
  6235. }
  6236. }
  6237. else
  6238. {
  6239. SendInput, t%Bind21%
  6240. }
  6241. }
  6242. return
  6243.  
  6244. Key22:
  6245. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6246. {
  6247. return
  6248. }
  6249. if(Bind22 != "" || Bind22 != """" || Bind22 != "ERROR")
  6250. {
  6251. FormatTime, Zeit,,HH:mm
  6252. FormatTime, Datum,,dd.MM.yyyy
  6253.  
  6254.  
  6255. Car := GetVehicleHealth()
  6256. StringReplace, Bind22, Bind22, <name>, %Name%, All
  6257. StringReplace, Bind22, Bind22, <hp>, %HP%, All
  6258. StringReplace, Bind22, Bind22, <car>, %Car%, All
  6259. StringReplace, Bind22, Bind22, <time>, %Zeit%, All
  6260. StringReplace, Bind22, Bind22, <date>, %Datum%, All
  6261. StringReplace, Bind22, Bind22, <einheit>, "Einheit: " . PoliceID . "", All
  6262. GetZoneName(Zone)
  6263. GetCityName(City)
  6264. Position := "" Zone ", " City
  6265. StringReplace, Bind22, Bind22, <pos>, %Position%, All
  6266.  
  6267. if(SendenKey22 == 1)
  6268. {
  6269. Bind22_1 := ""
  6270. Bind22_2 := ""
  6271. Bind22_3 := ""
  6272. StringSplit, Bind22_, Bind22, #
  6273. if(Bind22_1 != "")
  6274. {
  6275. SendChat("" Bind22_1 "")
  6276. Sleep, 100
  6277. }
  6278. if(Bind22_2 != "")
  6279. {
  6280. SendChat("" Bind22_2 "")
  6281. Sleep, 100
  6282. }
  6283. if(Bind22_3 != "")
  6284. {
  6285. SendChat("" Bind22_3 "")
  6286. }
  6287. }
  6288. else
  6289. {
  6290. SendInput, t%Bind22%
  6291. }
  6292. }
  6293. return
  6294.  
  6295. Key23:
  6296. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6297. {
  6298. return
  6299. }
  6300. if(Bind23 != "" || Bind23 != """" || Bind23 != "ERROR")
  6301. {
  6302. FormatTime, Zeit,,HH:mm
  6303. FormatTime, Datum,,dd.MM.yyyy
  6304.  
  6305.  
  6306. Car := GetVehicleHealth()
  6307. StringReplace, Bind23, Bind23, <name>, %Name%, All
  6308. StringReplace, Bind23, Bind23, <hp>, %HP%, All
  6309. StringReplace, Bind23, Bind23, <car>, %Car%, All
  6310. StringReplace, Bind23, Bind23, <time>, %Zeit%, All
  6311. StringReplace, Bind23, Bind23, <date>, %Datum%, All
  6312. StringReplace, Bind23, Bind23, <einheit>, "Einheit: " . PoliceID . "", All
  6313. GetZoneName(Zone)
  6314. GetCityName(City)
  6315. Position := "" Zone ", " City
  6316. StringReplace, Bind23, Bind23, <pos>, %Position%, All
  6317.  
  6318. if(SendenKey23 == 1)
  6319. {
  6320. Bind23_1 := ""
  6321. Bind23_2 := ""
  6322. Bind23_3 := ""
  6323. StringSplit, Bind23_, Bind23, #
  6324. if(Bind23_1 != "")
  6325. {
  6326. SendChat("" Bind23_1 "")
  6327. Sleep, 100
  6328. }
  6329. if(Bind23_2 != "")
  6330. {
  6331. SendChat("" Bind23_2 "")
  6332. Sleep, 100
  6333. }
  6334. if(Bind23_3 != "")
  6335. {
  6336. SendChat("" Bind23_3 "")
  6337. }
  6338. }
  6339. else
  6340. {
  6341. SendInput, t%Bind23%
  6342. }
  6343. }
  6344. return
  6345.  
  6346. Key24:
  6347. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6348. {
  6349. return
  6350. }
  6351. if(Bind24 != "" || Bind24 != """" || Bind24 != "ERROR")
  6352. {
  6353. FormatTime, Zeit,,HH:mm
  6354. FormatTime, Datum,,dd.MM.yyyy
  6355.  
  6356.  
  6357. Car := GetVehicleHealth()
  6358. StringReplace, Bind24, Bind24, <name>, %Name%, All
  6359. StringReplace, Bind24, Bind24, <hp>, %HP%, All
  6360. StringReplace, Bind24, Bind24, <car>, %Car%, All
  6361. StringReplace, Bind24, Bind24, <time>, %Zeit%, All
  6362. StringReplace, Bind24, Bind24, <date>, %Datum%, All
  6363. StringReplace, Bind24, Bind24, <einheit>, "Einheit: " . PoliceID . "", All
  6364. GetZoneName(Zone)
  6365. GetCityName(City)
  6366. Position := "" Zone ", " City
  6367. StringReplace, Bind24, Bind24, <pos>, %Position%, All
  6368.  
  6369. if(SendenKey24 == 1)
  6370. {
  6371. Bind24_1 := ""
  6372. Bind24_2 := ""
  6373. Bind24_3 := ""
  6374. StringSplit, Bind24_, Bind24, #
  6375. if(Bind24_1 != "")
  6376. {
  6377. SendChat("" Bind24_1 "")
  6378. Sleep, 100
  6379. }
  6380. if(Bind24_2 != "")
  6381. {
  6382. SendChat("" Bind24_2 "")
  6383. Sleep, 100
  6384. }
  6385. if(Bind24_3 != "")
  6386. {
  6387. SendChat("" Bind24_3 "")
  6388. }
  6389. }
  6390. else
  6391. {
  6392. SendInput, t%Bind24%
  6393. }
  6394. }
  6395. return
  6396.  
  6397. Key25:
  6398. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6399. {
  6400. return
  6401. }
  6402. if(Bind25 != "" || Bind25 != """" || Bind25 != "ERROR")
  6403. {
  6404. FormatTime, Zeit,,HH:mm
  6405. FormatTime, Datum,,dd.MM.yyyy
  6406.  
  6407.  
  6408. Car := GetVehicleHealth()
  6409. StringReplace, Bind25, Bind25, <name>, %Name%, All
  6410. StringReplace, Bind25, Bind25, <hp>, %HP%, All
  6411. StringReplace, Bind25, Bind25, <car>, %Car%, All
  6412. StringReplace, Bind25, Bind25, <time>, %Zeit%, All
  6413. StringReplace, Bind25, Bind25, <date>, %Datum%, All
  6414. StringReplace, Bind25, Bind25, <einheit>, "Einheit: " . PoliceID . "", All
  6415. GetZoneName(Zone)
  6416. GetCityName(City)
  6417. Position := "" Zone ", " City
  6418. StringReplace, Bind25, Bind25, <pos>, %Position%, All
  6419.  
  6420. if(SendenKey25 == 1)
  6421. {
  6422. Bind25_1 := ""
  6423. Bind25_2 := ""
  6424. Bind25_3 := ""
  6425. StringSplit, Bind25_, Bind25, #
  6426. if(Bind25_1 != "")
  6427. {
  6428. SendChat("" Bind25_1 "")
  6429. Sleep, 100
  6430. }
  6431. if(Bind25_2 != "")
  6432. {
  6433. SendChat("" Bind25_2 "")
  6434. Sleep, 100
  6435. }
  6436. if(Bind25_3 != "")
  6437. {
  6438. SendChat("" Bind25_3 "")
  6439. }
  6440. }
  6441. else
  6442. {
  6443. SendInput, t%Bind25%
  6444. }
  6445. }
  6446. return
  6447.  
  6448. Key26:
  6449. If(IsChatOpen() == 1 || IsDialogOpen() == 1)
  6450. {
  6451. return
  6452. }
  6453. if(Bind26 != "" || Bind26 != """" || Bind26 != "ERROR")
  6454. {
  6455. FormatTime, Zeit,,HH:mm
  6456. FormatTime, Datum,,dd.MM.yyyy
  6457.  
  6458.  
  6459. Car := GetVehicleHealth()
  6460. StringReplace, Bind26, Bind26, <name>, %Name%, All
  6461. StringReplace, Bind26, Bind26, <hp>, %HP%, All
  6462. StringReplace, Bind26, Bind26, <car>, %Car%, All
  6463. StringReplace, Bind26, Bind26, <time>, %Zeit%, All
  6464. StringReplace, Bind26, Bind26, <date>, %Datum%, All
  6465. StringReplace, Bind26, Bind26, <einheit>, "Einheit: " . PoliceID . "", All
  6466. GetZoneName(Zone)
  6467. GetCityName(City)
  6468. Position := "" Zone ", " City
  6469. StringReplace, Bind26, Bind26, <pos>, %Position%, All
  6470.  
  6471. if(SendenKey26 == 1)
  6472. {
  6473. Bind26_1 := ""
  6474. Bind26_2 := ""
  6475. Bind26_3 := ""
  6476. StringSplit, Bind26_, Bind26, #
  6477. if(Bind26_1 != "")
  6478. {
  6479. SendChat("" Bind26_1 "")
  6480. Sleep, 100
  6481. }
  6482. if(Bind26_2 != "")
  6483. {
  6484. SendChat("" Bind26_2 "")
  6485. Sleep, 100
  6486. }
  6487. if(Bind26_3 != "")
  6488. {
  6489. SendChat("" Bind26_3 "")
  6490. }
  6491. }
  6492. else
  6493. {
  6494. SendInput, t%Bind26%
  6495. }
  6496. }
  6497. return
  6498.  
  6499.  
  6500.  
  6501.  
  6502. :?:/id::
  6503. Suspend Permit
  6504. Suspend On
  6505. SendInput, /id{space}
  6506. Input, CID, V I M,{enter}
  6507. Send {enter}
  6508. SendChat("/number " . CID . "")
  6509. Suspend Off
  6510. return
  6511.  
  6512.  
  6513. :?:/afind::
  6514. Suspend Permit
  6515. Suspend On
  6516. SendInput, /find{space}
  6517. Input, AID, V I M,{enter}
  6518. Send {enter}
  6519. SetTimer, Find, 6000
  6520. Suspend Off
  6521. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Das automatische Suchen k?nen Sie mit der Taste '<' deaktivieren.")
  6522. return
  6523.  
  6524. :?:/af::
  6525. Suspend Permit
  6526. Suspend On
  6527. SendInput, /find{space}
  6528. Input, AID, V I M,{enter}
  6529. Send {enter}
  6530. SetTimer, Find, 6000
  6531. Suspend Off
  6532. return
  6533.  
  6534. Find:
  6535. SendChat("/find " . AID)
  6536. return
  6537.  
  6538. :?:/ashowpos::
  6539. Suspend Permit
  6540. Suspend On
  6541. SendInput, /showpos{space}
  6542. Input, AID, V I M,{enter}
  6543. Send {enter}
  6544. SetTimer, Show, 6000
  6545. Suspend Off
  6546. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Das automatische Zeigen k?nen Sie mit der Taste '<' deaktivieren.")
  6547. return
  6548.  
  6549. :?:/as::
  6550. Suspend Permit
  6551. Suspend On
  6552. SendInput, /showpos{space}
  6553. Input, AID, V I M,{enter}
  6554. Send {enter}
  6555. SetTimer, Show, 6000
  6556. Suspend Off
  6557. return
  6558.  
  6559. Show:
  6560. SendChat("/showpos " . AID)
  6561. return
  6562.  
  6563. :?:/pos::
  6564. Suspend Permit
  6565. if(Fahrer > -1)
  6566. {
  6567. pFahrer := Fahrer
  6568. }
  6569. else if(Partner1 > -1)
  6570. {
  6571. pFahrer := Partner1
  6572. }
  6573. else if(Partner2 > -1)
  6574. {
  6575. pFahrer := Partner2
  6576. }
  6577. else if(Partner3 > -1)
  6578. {
  6579. pFahrer := Partner3
  6580. }
  6581. else
  6582. {
  6583. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Es ist kein Partner / Fahrer eingetragen.")
  6584. return
  6585. }
  6586.  
  6587. Suspend On
  6588. SendInput, /showpos %pFahrer%{space}
  6589. Input, SID, V I M,{enter}
  6590. Send {enter}
  6591. SetTimer, PShow, 6000
  6592. Suspend Off
  6593. return
  6594.  
  6595. PShow:
  6596. SendChat("/showpos " . pFahrer . " " SID "")
  6597. return
  6598.  
  6599. :?:/dshow::
  6600. Suspend Permit
  6601. FindID := PlayerInput("Spieler ID / Name: ")
  6602. chatart := "d"
  6603. SetTimer, show_dete, 6000
  6604. SendChat("/find " FindID "")
  6605. Sleep, 200
  6606. GetChatLine(0, chatline_dete)
  6607. if(InStr(chatline_dete, "Dieser Spieler kann nicht gesucht werden."))
  6608. {
  6609. SendChat("/d Spieler " FindID " kann nicht gesucht werden.")
  6610. }
  6611. else if(InStr(chatline_dete, "Der Spieler ist nicht online."))
  6612. {
  6613. SendChat("/d Spieler " FindID " ist nicht online.")
  6614. }
  6615. else
  6616. {
  6617. RegExMatch(chatline_dete, "befindet sich in (.*)", Ort)
  6618. SendChat("/d Spieler " FindID " befindet sich in " Ort1 ".")
  6619. }
  6620. return
  6621.  
  6622. :?:/fshow::
  6623. Suspend Permit
  6624. FindID := PlayerInput("Spieler ID / Name: ")
  6625. chatart := "f"
  6626. SetTimer, show_dete, 6000
  6627. SendChat("/find " FindID "")
  6628. Sleep, 200
  6629. GetChatLine(0, chatline_dete)
  6630. if(InStr(chatline_dete, "Dieser Spieler kann nicht gesucht werden."))
  6631. {
  6632. SendChat("/f Spieler " FindID " kann nicht gesucht werden.")
  6633. }
  6634. else if(InStr(chatline_dete, "Der Spieler ist nicht online."))
  6635. {
  6636. SendChat("/f Spieler " FindID " ist nicht online.")
  6637. }
  6638. else
  6639. {
  6640. RegExMatch(chatline_dete, "befindet sich in (.*)", Ort)
  6641. SendChat("/f Spieler " FindID " befindet sich in " Ort1 ".")
  6642. }
  6643. return
  6644.  
  6645. :?:/rshow::
  6646. Suspend Permit
  6647. FindID := PlayerInput("Spieler ID / Name: ")
  6648. chatart := "r"
  6649. SetTimer, show_dete, 6000
  6650. SendChat("/find " FindID "")
  6651. Sleep, 200
  6652. GetChatLine(0, chatline_dete)
  6653. if(InStr(chatline_dete, "Dieser Spieler kann nicht gesucht werden."))
  6654. {
  6655. SendChat("/r Spieler " FindID " kann nicht gesucht werden.")
  6656. }
  6657. else if(InStr(chatline_dete, "Der Spieler ist nicht online."))
  6658. {
  6659. SendChat("/r Spieler " FindID " ist nicht online.")
  6660. }
  6661. else
  6662. {
  6663. RegExMatch(chatline_dete, "befindet sich in (.*)", Ort)
  6664. SendChat("/r Spieler " FindID " befindet sich in " Ort1 ".")
  6665. }
  6666. return
  6667.  
  6668.  
  6669. show_dete:
  6670. SendChat("/find " FindID "")
  6671. Sleep, 200
  6672. GetChatLine(0, chatline_dete)
  6673. if(InStr(chatline_dete, "Dieser Spieler kann nicht gesucht werden."))
  6674. {
  6675. SendChat("/" chatart " Spieler " FindID " kann nicht gesucht werden.")
  6676. }
  6677. else if(InStr(chatline_dete, "Der Spieler ist nicht online."))
  6678. {
  6679. SendChat("/" chatart " Spieler " FindID " ist nicht online.")
  6680. }
  6681. else
  6682. {
  6683. RegExMatch(chatline_dete, "befindet sich in (.*)", Ort)
  6684. SendChat("/" chatart " Spieler " FindID " befindet sich in " Ort1 ".")
  6685. }
  6686. return
  6687.  
  6688. :?:/kh::
  6689. Suspend Permit
  6690. exe := OpenMemoryfromTitle_("GTA:SA:MP")
  6691. posX := ReadMemory_(exe,0xC7DEC8,"Float")
  6692. posY := ReadMemory_(exe,0xC7DECC,"Float")
  6693. posZ := ReadMemory_(exe, 0xC7DED0,"Float")
  6694. CloseMemory_(exe)
  6695. posX := Floor(posX)
  6696. posY := Floor(posY)
  6697. posZ := Floor(posZ)
  6698. if(GetDistancebetween(1163.2358,-1323.2552,15.3945, posX, posY, posZ) <= 3)
  6699. {
  6700. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Spieler befindet sich im Krankenhaus.")
  6701. }
  6702. else
  6703. {
  6704. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Spieler befindet sich NICHT im Krankenhaus.")
  6705. }
  6706. return
  6707.  
  6708.  
  6709.  
  6710.  
  6711. :?:/fahrer::
  6712. Suspend Permit
  6713. if(Fahrer == -1)
  6714. {
  6715. SendInput, Gebe die ID deines Fahrers ein:{Space}
  6716. Input, caID, V I M,{Enter}
  6717. SendInput {end}+{home}{Del}{Esc}
  6718. Fahrer=%caID%
  6719.  
  6720.  
  6721. if(Fahrer < 0 || Fahrer > 400)
  6722. {
  6723. caID := GetPlayerIDByName(Fahrer)
  6724. Fahrer=%caID%
  6725. }
  6726. GetPlayerNameById(caID, fahrername)
  6727. if(fahrername == -1)
  6728. {
  6729. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dieser Spieler ist nicht Online.")
  6730. }
  6731. else
  6732. {
  6733. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} " . fahrername . " wurde als Fahrer eingetragen.")
  6734. }
  6735. }
  6736. else
  6737. {
  6738. AddChatMessage(0x4B45F, "|Atano-BinderFFFFFF} Der Fahrer wurde entfernt.")
  6739. Fahrer=-1
  6740. }
  6741. return
  6742.  
  6743.  
  6744.  
  6745. ~<::
  6746. If(IsChatOpen() == 1 || IsDialogOpen == 1)
  6747. {
  6748. return
  6749. }
  6750. SetTimer, Find, Off
  6751. SetTimer, Show, Off
  6752. SetTimer, PShow, Off
  6753. SetTimer, show_dete, off
  6754. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Automatische Suchsysteme deaktiviert.")
  6755. return
  6756.  
  6757.  
  6758.  
  6759.  
  6760. ~LControl & ~t::
  6761. Suspend Permit
  6762. If (IsPlayerinAnyVehicle() == 0)
  6763. {
  6764. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug!")
  6765. return
  6766. }
  6767. If (IsPlayerDriver() == 0)
  6768. {
  6769. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist nicht der Fahrer!")
  6770. return
  6771. }
  6772. SpeedOnOff := !SpeedOnOff
  6773. if(SpeedOnOff == 1)
  6774. {
  6775. VehSpeedMax := GetPlayerSpeed()
  6776. SpeedCheckStatus := "1"
  6777. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Tempomat wurde {00FF00}aktiviert{FFFFFF}. ({FFA000}~ " VehSpeedMax " {FFFFFF}KM/H)")
  6778. }
  6779. else
  6780. {
  6781.  
  6782. SpeedCheckStatus := "0"
  6783. Sleep, 250
  6784. SendInput {W up}
  6785. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Tempomat wurde {FF0000}deaktiviert{FFFFFF}.")
  6786. SendInput {W Up}
  6787. VehSpeedMax := 0
  6788. }
  6789. return
  6790.  
  6791.  
  6792. :?:/tempo::
  6793. Suspend Permit
  6794.  
  6795. If (IsPlayerinAnyVehicle() == 0)
  6796. {
  6797. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug!")
  6798. return
  6799. }
  6800. If (IsPlayerDriver() == 0)
  6801. {
  6802. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist nicht der Fahrer!")
  6803. return
  6804. }
  6805. tempo := PlayerInput("Bitte gebe deine gew?schte Geschwindigkeit an: ")
  6806. VehSpeedMax := tempo
  6807. SpeedCheckStatus := "1"
  6808. SpeedOnOff := "1"
  6809. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Tempomat wurde {00FF00}aktiviert{FFFFFF}. ({0x00BFFF}~ " VehSpeedMax " {FFFFFF}KM/H)")
  6810. return
  6811.  
  6812. ~?:
  6813. If(IsChatOpen() == 1 || IsDialogOpen == 1)
  6814. {
  6815. return
  6816. }
  6817. if (SpeedCheckStatus == 1)
  6818. {
  6819. VehSpeedMax := VehSpeedMax + 5
  6820. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Tempomat wurde auf {FF0000}~ " VehSpeedMax " {FFFFFF}KM/H eingestellt.")
  6821. }
  6822. return
  6823.  
  6824. ~L::
  6825. If(IsChatOpen() == 1 || IsDialogOpen == 1)
  6826. {
  6827. return
  6828. }
  6829. if (SpeedCheckStatus == 1)
  6830. {
  6831. VehSpeedMax := VehSpeedMax - 5
  6832. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Tempomat wurde auf {FFA000}~ " VehSpeedMax " {FFFFFF}KM/H eingestellt.")
  6833. }
  6834. return
  6835.  
  6836.  
  6837. ~W::
  6838. If(IsChatOpen() == 1 || IsDialogOpen == 1)
  6839. {
  6840. return
  6841. }
  6842. if (SpeedCheckStatus == 1)
  6843. {
  6844. SpeedCheckStatus := "0"
  6845. SpeedOnOff := "0"
  6846. Sleep, 250
  6847. SendInput {W up}
  6848. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Tempomat wurde {FF0000}deaktiviert{FFFFFF}.")
  6849. SendInput {W Up}
  6850. VehSpeedMax := 0
  6851. }
  6852.  
  6853.  
  6854.  
  6855.  
  6856.  
  6857.  
  6858.  
  6859.  
  6860.  
  6861.  
  6862.  
  6863.  
  6864.  
  6865.  
  6866.  
  6867.  
  6868.  
  6869.  
  6870.  
  6871.  
  6872. return
  6873.  
  6874. ~S::
  6875. If(IsChatOpen() == 1 || IsDialogOpen == 1)
  6876. {
  6877. return
  6878. }
  6879. if (SpeedCheckStatus == 1)
  6880. {
  6881. SpeedCheckStatus := "0"
  6882. SpeedOnOff := "0"
  6883. Sleep, 250
  6884. SendInput {W up}
  6885. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Tempomat wurde {FF0000}deaktiviert{FFFFFF}.")
  6886. SendInput {W Up}
  6887. VehSpeedMax := 0
  6888. }
  6889. return
  6890.  
  6891. :?:/kcall::
  6892. Suspend Permit
  6893. pinput := PlayerInput("Name: ")
  6894. Sleep, 250
  6895. SendChat("/number " . pinput . "")
  6896. Loop,
  6897. {
  6898. GetChatLine(0, line)
  6899. if(InStr(line, "Name: "))
  6900. {
  6901. RegExMatch(line, "Name: (.*), Ph: (.*)", Output)
  6902. SendChat("/call " . Output2)
  6903. return
  6904. }
  6905. else If(InStr(line, "Diesen Spieler gibt es nicht!"))
  6906. {
  6907. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Anruf fehlgeschlagen!")
  6908. return
  6909. }
  6910. else
  6911. {
  6912. continue
  6913. }
  6914. }
  6915. return
  6916.  
  6917. :?:/ksms::
  6918. Suspend Permit
  6919. pinput := PlayerInput("Name: ")
  6920. SendChat("/number " . pinput . "")
  6921. Loop,
  6922. {
  6923. GetChatLine(0, line)
  6924. if(InStr(line, "Name: "))
  6925. {
  6926. RegExMatch(line, "Name: (.*), Ph: (.*)", Output)
  6927. SendInput, t/sms %Output2%{space}
  6928. return
  6929. }
  6930. else If(InStr(line, "Diesen Spieler gibt es nicht!"))
  6931. {
  6932. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Versendung nicht m?lich!")
  6933. return
  6934. }
  6935. else
  6936. {
  6937. continue
  6938. }
  6939. }
  6940. return
  6941.  
  6942. :?:/p::
  6943. Suspend Permit
  6944. SendChat("/p")
  6945. SoundPlay, avixa.avi
  6946. return
  6947.  
  6948. :?:/pickup::
  6949. Suspend Permit
  6950. SendChat("/p")
  6951. SoundPlay, avixa.avi
  6952. return
  6953.  
  6954.  
  6955. :?:/hp::
  6956. Suspend Permit
  6957. SendChat("/cooked")
  6958. Sleep 250
  6959. GetChatLine(5, fish1)
  6960. GetChatLine(4, fish2)
  6961. GetChatLine(3, fish3)
  6962. GetChatLine(2, fish4)
  6963. GetChatLine(1, fish5)
  6964. RegExMatch(fish1, "\*\* \(1\) Hergestellt: gekochten (.*) \((.*) LBS\)", fisch1_)
  6965. RegExMatch(fish2, "\*\* \(2\) Hergestellt: gekochten (.*) \((.*) LBS\)", fisch2_)
  6966. RegExMatch(fish3, "\*\* \(3\) Hergestellt: gekochten (.*) \((.*) LBS\)", fisch3_)
  6967. RegExMatch(fish4, "\*\* \(4\) Hergestellt: gekochten (.*) \((.*) LBS\)", fisch4_)
  6968. RegExMatch(fish5, "\*\* \(5\) Hergestellt: gekochten (.*) \((.*) LBS\)", fisch5_)
  6969. HP1 = %fisch1_2%
  6970. HP1/=3
  6971. HP1 := Floor(HP1)
  6972. HP2 = %fisch2_2%
  6973. HP2/=3
  6974. HP2 := Floor(HP2)
  6975. HP3 = %fisch3_2%
  6976. HP3/=3
  6977. HP3 := Floor(HP3)
  6978. HP4 = %fisch4_2%
  6979. HP4/=3
  6980. HP4 := Floor(HP4)
  6981. HP5 = %fisch5_2%
  6982. HP5/=3
  6983. HP5 := Floor(HP5)
  6984. Gesamt=0
  6985. Gesamt+=%HP1%
  6986. Gesamt+=%HP2%
  6987. Gesamt+=%HP3%
  6988. Gesamt+=%HP4%
  6989. Gesamt+=%HP5%
  6990. AddChatMessage(0xDF0101, "[Atanp-Binder] {04B45F}[Fish] {FFFFFF}" . fisch1_1 . " (" . fisch1_2 . " LBS) - {FFBF00} " . HP1 . " HP")
  6991. AddChatMessage(0xDF0101, "[Atano-Binder] {04B45F}[Fish] {FFFFFF}" . fisch2_1 . " (" . fisch2_2 . " LBS) - {FFBF00} " . HP2 . " HP")
  6992. AddChatMessage(0xDF0101, "[Atano-Binder] {04B45F}[Fish] {FFFFFF}" . fisch3_1 . " (" . fisch3_2 . " LBS) - {FFBF00} " . HP3 . " HP")
  6993. AddChatMessage(0xDF0101, "[Atano-Binder] {04B45F}[Fish] {FFFFFF}" . fisch4_1 . " (" . fisch4_2 . " LBS) - {FFBF00} " . HP4 . " HP")
  6994. AddChatMessage(0xDF0101, "[Atano-Binder] {04B45F}[Fish] {FFFFFF}" . fisch5_1 . " (" . fisch5_2 . " LBS) - {FFA000} " . HP5 . " HP")
  6995. AddChatMessage(0xDF0101, "[Atano-Binder] {04B45F}[Fish] {FFFFFF}-----------------------------------------------")
  6996. AddChatMessage(0xDF0101, "[Atano-Binder] {04B45F}[Fish] {FFFFFF}Gesamt: {FFBF00}" . Gesamt . " HP")
  6997. return
  6998.  
  6999.  
  7000.  
  7001. :?:/fische::
  7002. Suspend Permit
  7003. SendChat("/fishes")
  7004. Sleep 250
  7005. GetChatLine(5, fische1)
  7006. GetChatLine(4, fische2)
  7007. GetChatLine(3, fische3)
  7008. GetChatLine(2, fische4)
  7009. GetChatLine(1, fische5)
  7010. RegExMatch(fische1, "\*\* \(1\) Fisch: (.*) \((.*) LBS\)", fische1_)
  7011. RegExMatch(fische2, "\*\* \(2\) Fisch: (.*) \((.*) LBS\)", fische2_)
  7012. RegExMatch(fische3, "\*\* \(3\) Fisch: (.*) \((.*) LBS\)", fische3_)
  7013. RegExMatch(fische4, "\*\* \(4\) Fisch: (.*) \((.*) LBS\)", fische4_)
  7014. RegExMatch(fische5, "\*\* \(5\) Fisch: (.*) \((.*) LBS\)", fische5_)
  7015. if(fische1_1 == "Makrele")
  7016. {
  7017. Multiplier1 := 8
  7018. }
  7019. else if(fische1_1 == "Zackenbarsch")
  7020. {
  7021. Multiplier1 := 3
  7022. }
  7023. else if(fische1_1 == "Bernfisch")
  7024. {
  7025. Multiplier1 := 1
  7026. }
  7027. else if(fische1_1 == "Schwertfisch")
  7028. {
  7029. Multiplier1 := 3
  7030. }
  7031. else if(fische1_1 == "Roter Schnapper")
  7032. {
  7033. Multiplier1 := 3
  7034. }
  7035. else if(fische1_1 == "Blauer F?herfisch")
  7036. {
  7037. Multiplier1 := 2
  7038. }
  7039. else if(fische1_1 == "Thunfisch")
  7040. {
  7041. Multiplier1 := 12
  7042. }
  7043. else if(fische1_1 == "Wolfbarsch")
  7044. {
  7045. Multiplier1 := 12
  7046. }
  7047. else if(fische1_1 == "Segelfisch")
  7048. {
  7049. Multiplier1 := 7
  7050. }
  7051. else if(fische1_1 == "Hai")
  7052. {
  7053. Multiplier1 := 7
  7054. }
  7055. else if(fische1_1 == "Delphin")
  7056. {
  7057. Multiplier1 := 7
  7058. }
  7059. else if(fische1_1 == "Katzenfisch")
  7060. {
  7061. Multiplier1 := 4
  7062. }
  7063. else if(fische1_1 == "Hecht")
  7064. {
  7065. Multiplier1 := 9
  7066. }
  7067. else if(fische1_1 == "Aal")
  7068. {
  7069. Multiplier1 := 9
  7070. }
  7071. else if(fische1_1 == "Schildkr?e")
  7072. {
  7073. Multiplier1 := 10
  7074. }
  7075. else if(fische1_1 == "Forelle")
  7076. {
  7077. Multiplier1 := 5
  7078. }
  7079. else if(fische1_1 == "Nichts")
  7080. {
  7081. Multiplier1 := 0
  7082. }
  7083. if(fische2_1 == "Makrele")
  7084. {
  7085. Multiplier2 := 8
  7086. }
  7087. else if(fische2_1 == "Bernfisch")
  7088. {
  7089. Multiplier2 := 1
  7090. }
  7091. else if(fische2_1 == "Zackenbarsch")
  7092. {
  7093. Multiplier2 := 3
  7094. }
  7095. else if(fische2_1 == "Schwertfisch")
  7096. {
  7097. Multiplier2 := 3
  7098. }
  7099. else if(fische2_1 == "Roter Schnapper")
  7100. {
  7101. Multiplier2 := 3
  7102. }
  7103. else if(fische2_1 == "Blauer F?herfisch")
  7104. {
  7105. Multiplier2 := 2
  7106. }
  7107. else if(fische2_1 == "Thunfisch")
  7108. {
  7109. Multiplier2 := 12
  7110. }
  7111. else if(fische2_1 == "Wolfbarsch")
  7112. {
  7113. Multiplier2 := 12
  7114. }
  7115. else if(fische2_1 == "Segelfisch")
  7116. {
  7117. Multiplier2 := 7
  7118. }
  7119. else if(fische2_1 == "Hai")
  7120. {
  7121. Multiplier2 := 7
  7122. }
  7123. else if(fische2_1 == "Delphin")
  7124. {
  7125. Multiplier2 := 7
  7126. }
  7127. else if(fische2_1 == "Katzenfisch")
  7128. {
  7129. Multiplier2 := 4
  7130. }
  7131. else if(fische2_1 == "Hecht")
  7132. {
  7133. Multiplier2 := 9
  7134. }
  7135. else if(fische2_1 == "Aal")
  7136. {
  7137. Multiplier2 := 9
  7138. }
  7139. else if(fische2_1 == "Schildkr?e")
  7140. {
  7141. Multiplier2 := 10
  7142. }
  7143. else if(fische2_1 == "Forelle")
  7144. {
  7145. Multiplier2 := 5
  7146. }
  7147. else if(fische2_1 == "Nichts")
  7148. {
  7149. Multiplier2 := 0
  7150. }
  7151. if(fische3_1 == "Makrele")
  7152. {
  7153. Multiplier3 := 8
  7154. }
  7155. else if(fische3_1 == "Zackenbarsch")
  7156. {
  7157. Multiplier3 := 3
  7158. }
  7159. else if(fische3_1 == "Bernfisch")
  7160. {
  7161. Multiplier3 := 1
  7162. }
  7163. else if(fische3_1 == "Schwertfisch")
  7164. {
  7165. Multiplier3 := 3
  7166. }
  7167. else if(fische3_1 == "Roter Schnapper")
  7168. {
  7169. Multiplier3 := 3
  7170. }
  7171. else if(fische3_1 == "Blauer F?herfisch")
  7172. {
  7173. Multiplier3 := 2
  7174. }
  7175. else if(fische3_1 == "Thunfisch")
  7176. {
  7177. Multiplier3 := 12
  7178. }
  7179. else if(fische3_1 == "Wolfbarsch")
  7180. {
  7181. Multiplier3 := 12
  7182. }
  7183. else if(fische3_1 == "Segelfisch")
  7184. {
  7185. Multiplier3 := 7
  7186. }
  7187. else if(fische3_1 == "Hai")
  7188. {
  7189. Multiplier3 := 7
  7190. }
  7191. else if(fische3_1 == "Delphin")
  7192. {
  7193. Multiplier3 := 7
  7194. }
  7195. else if(fische3_1 == "Katzenfisch")
  7196. {
  7197. Multiplier3 := 4
  7198. }
  7199. else if(fische3_1 == "Hecht")
  7200. {
  7201. Multiplier3 := 9
  7202. }
  7203. else if(fische3_1 == "Aal")
  7204. {
  7205. Multiplier3 := 9
  7206. }
  7207. else if(fische3_1 == "Schildkr?e")
  7208. {
  7209. Multiplier3 := 10
  7210. }
  7211. else if(fische3_1 == "Forelle")
  7212. {
  7213. Multiplier3 := 5
  7214. }
  7215. else if(fische3_1 == "Nichts")
  7216. {
  7217. Multiplier3 := 0
  7218. }
  7219. if(fische4_1 == "Makrele")
  7220. {
  7221. Multiplier4 := 8
  7222. }
  7223. else if(fische4_1 == "Zackenbarsch")
  7224. {
  7225. Multiplier4 := 3
  7226. }
  7227. else if(fische4_1 == "Schwertfisch")
  7228. {
  7229. Multiplier4 := 3
  7230. }
  7231. else if(fische4_1 == "Roter Schnapper")
  7232. {
  7233. Multiplier4 := 3
  7234. }
  7235. else if(fische4_1 == "Bernfisch")
  7236. {
  7237. Multiplier4 := 1
  7238. }
  7239. else if(fische4_1 == "Blauer F?herfisch")
  7240. {
  7241. Multiplier4 := 2
  7242. }
  7243. else if(fische4_1 == "Thunfisch")
  7244. {
  7245. Multiplier4 := 12
  7246. }
  7247. else if(fische4_1 == "Wolfbarsch")
  7248. {
  7249. Multiplier4 := 12
  7250. }
  7251. else if(fische4_1 == "Segelfisch")
  7252. {
  7253. Multiplier4 := 7
  7254. }
  7255. else if(fische4_1 == "Hai")
  7256. {
  7257. Multiplier4 := 7
  7258. }
  7259. else if(fische4_1 == "Delphin")
  7260. {
  7261. Multiplier4 := 7
  7262. }
  7263. else if(fische4_1 == "Katzenfisch")
  7264. {
  7265. Multiplier4 := 4
  7266. }
  7267. else if(fische4_1 == "Hecht")
  7268. {
  7269. Multiplier4 := 9
  7270. }
  7271. else if(fische4_1 == "Aal")
  7272. {
  7273. Multiplier4 := 9
  7274. }
  7275. else if(fische4_1 == "Schildkr?e")
  7276. {
  7277. Multiplier4 := 10
  7278. }
  7279. else if(fische4_1 == "Forelle")
  7280. {
  7281. Multiplier4 := 5
  7282. }
  7283. else if(fische4_1 == "Nichts")
  7284. {
  7285. Multiplier4 := 0
  7286. }
  7287. if(fische5_1 == "Makrele")
  7288. {
  7289. Multiplier5 := 8
  7290. }
  7291. else if(fische5_1 == "Zackenbarsch")
  7292. {
  7293. Multiplier5 := 3
  7294. }
  7295. else if(fische5_1 == "Schwertfisch")
  7296. {
  7297. Multiplier5 := 3
  7298. }
  7299. else if(fische5_1 == "Bernfisch")
  7300. {
  7301. Multiplier5 := 1
  7302. }
  7303. else if(fische5_1 == "Roter Schnapper")
  7304. {
  7305. Multiplier5 := 3
  7306. }
  7307. else if(fische5_1 == "Blauer F?herfisch")
  7308. {
  7309. Multiplier5 := 2
  7310. }
  7311. else if(fische5_1 == "Thunfisch")
  7312. {
  7313. Multiplier5 := 12
  7314. }
  7315. else if(fische5_1 == "Wolfbarsch")
  7316. {
  7317. Multiplier5 := 12
  7318. }
  7319. else if(fische5_1 == "Segelfisch")
  7320. {
  7321. Multiplier5 := 7
  7322. }
  7323. else if(fische5_1 == "Hai")
  7324. {
  7325. Multiplier5 := 7
  7326. }
  7327. else if(fische5_1 == "Delphin")
  7328. {
  7329. Multiplier5 := 7
  7330. }
  7331. else if(fische5_1 == "Katzenfisch")
  7332. {
  7333. Multiplier5 := 4
  7334. }
  7335. else if(fische5_1 == "Hecht")
  7336. {
  7337. Multiplier5 := 9
  7338. }
  7339. else if(fische5_1 == "Aal")
  7340. {
  7341. Multiplier5 := 9
  7342. }
  7343. else if(fische5_1 == "Schildkr?e")
  7344. {
  7345. Multiplier5 := 10
  7346. }
  7347. else if(fische5_1 == "Forelle")
  7348. {
  7349. Multiplier5 := 5
  7350. }
  7351. else if(fische5_1 == "Nichts")
  7352. {
  7353. Multiplier5 := 0
  7354. }
  7355. Geld1 = %fische1_2%
  7356. Geld1_2 := Multiplier1
  7357. Geld1*= Geld1_2
  7358. Geld1 := Floor(Geld1)
  7359. Geld2 = %fische2_2%
  7360. Geld2_2 := Multiplier2
  7361. Geld2*= Geld2_2
  7362. Geld2 := Floor(Geld2)
  7363. Geld3 = %fische3_2%
  7364. Geld3_2 := Multiplier3
  7365. Geld3*= Geld3_2
  7366. Geld3 := Floor(Geld3)
  7367. Geld4 = %fische4_2%
  7368. Geld4_2 := Multiplier4
  7369. Geld4*= Geld4_2
  7370. Geld4 := Floor(Geld4)
  7371. Geld5 = %fische5_2%
  7372. Geld5_2 := Multiplier5
  7373. Geld5*= Geld5_2
  7374. Geld5 := Floor(Geld5)
  7375. HP1_2 = %fische1_2%
  7376. HP1 := Round(HP1_2*0.3,0)
  7377. HP1 := Floor(HP1)
  7378. HP2_2 = %fische2_2%
  7379. HP2 := Round(HP2_2*0.3,0)
  7380. HP2 := Floor(HP2)
  7381. HP3_2 = %fische3_2%
  7382. HP3 := Round(HP3_2*0.3,0)
  7383. HP3 := Floor(HP3)
  7384. HP4_2 = %fische4_2%
  7385. HP4 := Round(HP4_2*0.3,0)
  7386. HP4 := Floor(HP4)
  7387. HP5_2 = %fische5_2%
  7388. HP5 := Round(HP5_2*0.3,0)
  7389. HP5 := Floor(HP5)
  7390. Gesamt := 0
  7391. Gesamt2 := 0
  7392. Gesamt3 := 0
  7393. Gesamt+=%Geld1%
  7394. Gesamt+=%Geld2%
  7395. Gesamt+=%Geld3%
  7396. Gesamt+=%Geld4%
  7397. Gesamt+=%Geld5%
  7398. Gesamt2+=%HP1%
  7399. Gesamt2+=%HP2%
  7400. Gesamt2+=%HP3%
  7401. Gesamt2+=%HP4%
  7402. Gesamt2+=%HP5%
  7403. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] {FF8000}" . fische1_1 . " (" . fische1_2 . " LBS) - {009AFF} " . Geld1 . " $ - " . HP1 . " HP")
  7404. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] {FF8000}" . fische2_1 . " (" . fische2_2 . " LBS) - {009AFF} " . Geld2 . " $ - " . HP2 . " HP")
  7405. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] {FF8000}" . fische3_1 . " (" . fische3_2 . " LBS) - {009AFF} " . Geld3 . " $ - " . HP3 . " HP")
  7406. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] {FF8000}" . fische4_1 . " (" . fische4_2 . " LBS) - {009AFF} " . Geld4 . " $ - " . HP4 . " HP")
  7407. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] {FF8000}: {FFFFFF}" . fische5_1 . " (" . fische5_2 . " LBS) - {009AFF} " . Geld5 . " $ - " . HP5 . " HP")
  7408. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] {FF8000}: {FFFFFF}-----------------------------------------------")
  7409. AddChatMessage(0x00BFFF, "|Atano-Binder|{ACFA58} [Statistik] {FF8000}: {FFFFFF}Gesamt: {009AFF}" . Gesamt . " $ - " . Gesamt2 . " HP")
  7410. return
  7411.  
  7412.  
  7413.  
  7414. :?:/minuten::
  7415. Suspend Permit
  7416. Sekunden := PlayerInput("Anzahl der Sekunden: ")
  7417. if(Sekunden != "" && Sekunden != " " && Sekunden != 0)
  7418. {
  7419. Minuten := Sekunden / 60
  7420. Minuten := round(Minuten, 2)
  7421. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} {3ADF00}" Sekunden "{FFFFFF} Sekunden sind {3ADF00}" Minuten "{FFFFFF} Minuten.")
  7422. }
  7423. return
  7424.  
  7425.  
  7426.  
  7427. :?:/kaution::
  7428. Suspend Permit
  7429. caID := PlayerInput("Klient-Name: ")
  7430. UpdateServerData()
  7431. Klient=%caID%
  7432. if(Klient < 0 || Klient > 400)
  7433. {
  7434. caID := GetPlayerIDByName(Klient)
  7435. Klient=%caID%
  7436. }
  7437. GetPlayerNameByID(caID, Klientname)
  7438. SendChat("/freeinfo")
  7439. Sleep, 700
  7440. Loop
  7441. {
  7442. GetChatLine(A_Index - 1, chat)
  7443. if(InStr(chat, Klientname))
  7444. {
  7445. RegExMatch(chat, "" Klientname " {FFA600}(.*) Minuten {00B7FF}(.*)\$ {A30000}SAPD", kaution)
  7446. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dein Klient {3ADF00}" Klientname "{FFFFFF} hat eine Kaution von {3ADF00}" kaution2 "{FFFFFF}$.")
  7447. break
  7448. }
  7449. if(Instr(chat, "{55FF00}Name {FFA600}Haftzeit {00B7FF}Kaution {A30000}Standort"))
  7450. {
  7451. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Klient nicht gefunden.")
  7452. break
  7453. }
  7454. if(InStr(chat, "Du bist nicht in der Polizei Station."))
  7455. {
  7456. break
  7457. }
  7458. }
  7459. return
  7460.  
  7461.  
  7462. :?:/fg::
  7463. Suspend Permit
  7464. SendChat("/festgeld 1250000")
  7465. return
  7466.  
  7467. :?:/ap::
  7468. Suspend Permit
  7469. SendChat("/accept Paket")
  7470. return
  7471.  
  7472. :?:/paket::
  7473. Suspend Permit
  7474. SendChat("/accept Paket")
  7475. return
  7476.  
  7477. :?:/tanken::
  7478. Suspend Permit
  7479. if(IsPlayerInAnyVehicle() == "0")
  7480. {
  7481. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug")
  7482. return
  7483. }
  7484. if(IsVehicleEngineEnabled() == 1)
  7485. {
  7486. SendChat("/motor")
  7487. }
  7488. SendChat("/fill")
  7489. Sleep, 10000
  7490. SendChat("/motor")
  7491. Sleep, 2600
  7492. SendChat("/licht")
  7493. return
  7494.  
  7495. :?:/sb::
  7496. Suspend Permit
  7497. id := PlayerInput("/showbadge ")
  7498. SendChat("/showbadge " id)
  7499. return
  7500.  
  7501.  
  7502. ~1::
  7503. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  7504. {
  7505. SendInput, {A_ThisHotkey}
  7506. return
  7507. }
  7508.  
  7509. if(IsPlayerInAnyVehicle() == "0")
  7510. {
  7511. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug")
  7512. }
  7513. else
  7514. {
  7515. If(IsPlayerDriver() == 0)
  7516. {
  7517. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist nicht der Fahrer eines Fahrzeuges.")
  7518. }
  7519. else
  7520. {
  7521. SendChat("/motor")
  7522. SendChat("/licht")
  7523. Sleep, 200
  7524. IniRead, Lock, settings.ini, Daten, Lock
  7525. if(Lock = 1)
  7526. {
  7527.  
  7528.  
  7529. if(IsVehicleLocked() == 0)
  7530. {
  7531. SendChat("/lock")
  7532. }
  7533.  
  7534. }
  7535. SetTimer, LichtEinschalten, 1000
  7536. Sleep, 1000
  7537. if(IsVehicleLightEnabled() == 0 && IsVehicleEngineEnabled() == 1)
  7538. {
  7539.  
  7540. }
  7541. }
  7542. }
  7543. return
  7544.  
  7545. LichtEinschalten:
  7546.  
  7547. if(IsVehicleLightEnabled() == 0 && IsVehicleEngineEnabled() == 1)
  7548. {
  7549. SendChat("/licht")
  7550. }
  7551. SetTimer, LichtEinschalten, off
  7552. return
  7553.  
  7554. ~+1::
  7555. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  7556. {
  7557. return
  7558. }
  7559. if(IsPlayerInAnyVehicle() == "0")
  7560. {
  7561. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug")
  7562. }
  7563. else
  7564. {
  7565. SendChat("/licht")
  7566. }
  7567. return
  7568.  
  7569.  
  7570. ~F::
  7571. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  7572. {
  7573. return
  7574. }
  7575. IniRead, Lock, settings.ini, Daten, Lock
  7576. if(Lock = 1)
  7577. {
  7578. if(IsPlayerInAnyVehicle() == "0")
  7579. {
  7580. Loop,
  7581. if(IsPlayerDriver() == 1)
  7582. {
  7583.  
  7584. if(IsVehicleLocked() == 0)
  7585. {
  7586. Sleep, 200
  7587. SendChat("/lock")
  7588. return
  7589. }
  7590. }
  7591. }
  7592. else
  7593. {
  7594. if(IsPlayerDriver() == 1)
  7595. {
  7596. if (IsVehicleEngineEnabled() == 1)
  7597. {
  7598. SendChat("/motor")
  7599. Sleep 700
  7600. Send F
  7601. return
  7602. }
  7603. return
  7604. }
  7605. }
  7606. }
  7607. return
  7608.  
  7609. ~Y::
  7610. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  7611. {
  7612. return
  7613. }
  7614. if(IsPlayerInAnyVehicle() == "0")
  7615. {
  7616. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug")
  7617. }
  7618. else
  7619. {
  7620. SendChat("/lock")
  7621. }
  7622. return
  7623.  
  7624. !Y::
  7625. SendChat("/eat " . fischers . "")
  7626. fischers++
  7627. if(fischers == "6")
  7628. {
  7629. fischers=1
  7630. }
  7631. return
  7632.  
  7633.  
  7634. ~F2::
  7635. SendChat("/eat " . fischers . "")
  7636. fischers++
  7637. if(fischers == "6")
  7638. {
  7639. fischers=1
  7640. }
  7641. return
  7642.  
  7643.  
  7644. !X::
  7645. SendChat("/erstehilfe")
  7646. return
  7647.  
  7648.  
  7649.  
  7650. :?:/an::
  7651. Suspend Permit
  7652. Loop, read, %A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  7653. {
  7654. if InStr(A_LoopReadLine, "Dein Handy klingelt. Tippe /pickup. Anrufer-ID: ")
  7655. {
  7656. RegExMatch(A_LoopReadLine, "Dein Handy klingelt\. Tippe /pickup\. Anrufer\-ID\: (.*)", var)
  7657. }
  7658. }
  7659. SendChat("/p")
  7660. SoundPlay, avixa.avi
  7661. if(var1 == "" || var1 == " " || var1 == " " || var1 == "-1")
  7662. {
  7663. var1 := "Sir "
  7664. }
  7665. GetPlayerName(Name)
  7666. StringTrimRight Anrufer, var1, 1
  7667. SendChat("Guten Tag " . Anrufer . ", Sie sprechen mit " . Name ".")
  7668. SendChat("Wie kann ich Ihnen behilflich sein?")
  7669. return
  7670.  
  7671.  
  7672. :?:/ab::
  7673. Suspend Permit
  7674. SoundPlay, xavi.avi
  7675. GetPlayerName(Name)
  7676. SendChat("/p")
  7677. SendChat("Guten Tag, Sie sind verbunden mit dem Anrufbeantworter von " . Name . ".")
  7678. Sleep 1000
  7679. SendChat("Leider habe ich keine Zeit, bitte versuchen Sie es sp?er erneut.")
  7680. Sleep, 1000
  7681. SendChat("Auf Wiederh?en.")
  7682. SendChat("/h")
  7683. return
  7684.  
  7685. :?:/jas::
  7686. Suspend Permit
  7687. SendChat("Ja Sir, was kann ich f? Sie tun?")
  7688. return
  7689.  
  7690. :?:/jam::
  7691. Suspend Permit
  7692. SendChat("Ja Madam, was kann ich f? Sie tun?")
  7693. return
  7694.  
  7695. :?:/ja::
  7696. SendChat("Ja, was kann ich f? Sie tun?")
  7697. return
  7698.  
  7699. :?:/danke::
  7700. Suspend Permit
  7701. SendChat("Vielen Dank f? Ihren Anruf. Sch?en Tag noch.")
  7702. SendChat("/h")
  7703. return
  7704.  
  7705. :?:/tag::
  7706. Suspend Permit
  7707. FormatTime, Uhrzeit,, HH
  7708. if (Uhrzeit >= 12 && Uhrzeit < 20)
  7709. {
  7710. SendChat("Guten Tag, wie kann ich Ihnen behilflich sein?")
  7711. }
  7712. if (Uhrzeit >= 20 || Uhrzeit == 0)
  7713. {
  7714. SendChat("Guten Abend, wie kann ich Ihnen behilflich sein?")
  7715. }
  7716. if (Uhrzeit >= 1 && Uhrzeit < 12)
  7717. {
  7718. SendChat("Guten Morgen, wie kann ich Ihnen behilflich sein?")
  7719. }
  7720. return
  7721.  
  7722. :?:/bye::
  7723. Suspend Permit
  7724. FormatTime, Uhrzeit,, HH
  7725. if (Uhrzeit >= 12 && Uhrzeit < 20)
  7726. {
  7727. SendChat("Ich w?sche Ihnen noch einen sch?en Tag. Auf Wiedersehen.")
  7728. }
  7729. if (Uhrzeit >= 20 || Uhrzeit == 0)
  7730. {
  7731. SendChat("Ich w?sche Ihnen noch einen sch?en Abend. Auf Wiedersehen.")
  7732. }
  7733. if (Uhrzeit >= 1 && Uhrzeit < 12)
  7734. {
  7735. SendChat("Ich w?sche Ihnen noch einen sch?en Tag. Auf Wiedersehen.")
  7736. }
  7737. return
  7738.  
  7739. :?:/on::
  7740. Suspend Permit
  7741. GetPlayerName(Name)
  7742. IniRead, Fraktion, settings.ini, Daten, Fraktion
  7743. {
  7744. Titel := "Agent"
  7745. SendChat("/hq Agent " Name " meldet sich zum Dienst.")
  7746. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Willkommen " Name " ")
  7747. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Keybinder erfolgreich gestartet")
  7748. }
  7749. SendChat("/hitsound")
  7750. Sleep, 500
  7751. SendChat("/pdmarker")
  7752. Sleep, 850
  7753. SendChat("/tog")
  7754. sleep, 100
  7755. SendInput {enter}
  7756. SendChat("/messages")
  7757. return
  7758.  
  7759.  
  7760.  
  7761.  
  7762.  
  7763.  
  7764.  
  7765. ~m::
  7766. if(IsChatOpen() || IsDialogOpen() || IsMenuOpen())
  7767. return
  7768. SendChat("/members")
  7769. return
  7770.  
  7771.  
  7772. :?:/pb::
  7773. Suspend Permit
  7774. SendChat("/paintball")
  7775. sleep 100
  7776. Member := 0
  7777. Loop, 100
  7778. {
  7779. GetChatLine(Member, Chat)
  7780. If(InStr(Chat, "Punkte"))
  7781. Member++
  7782. else
  7783. {
  7784. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Spieler im Paintball: {FFBF00}" Member "{FFFFFF}.")
  7785. return
  7786. }
  7787. }
  7788. return
  7789.  
  7790. :?:/paintball::
  7791. Suspend Permit
  7792. SendChat("/paintball")
  7793. sleep 100
  7794. Member := 0
  7795. Loop, 100
  7796. {
  7797. GetChatLine(Member, Chat)
  7798. If(InStr(Chat, "Punkte"))
  7799. Member++
  7800. else
  7801. {
  7802. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Spieler im Paintball: {FFBF00}" Member "{FFFFFF}.")
  7803. return
  7804. }
  7805. }
  7806. return
  7807.  
  7808. :?:/savestats::
  7809. Suspend Permit
  7810. FormatTime, StatsZeit, dd.MM.yyyy
  7811. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Statistiken werden gespeichert, Datum " StatsZeit)
  7812. SendChat("/time")
  7813. Sleep, 250
  7814. SendChat("/stats")
  7815. Sleep, 250
  7816. Send {F8}
  7817. Sleep, 250
  7818. Send {ESC}
  7819. return
  7820.  
  7821. :?:/relog::
  7822. Suspend Permit
  7823. SendInput /q{enter}
  7824. Sleep 3000
  7825. Suspend Off
  7826. RegRead GTA_SA_EXE, HKEY_CURRENT_USER, Software\samp, gta_sa_exe
  7827. SplitPath, GTA_SA_EXE,, PFAD
  7828. run %PFAD%\samp.exe 37.187.135.201:7777, %PFAD%
  7829. return
  7830.  
  7831. :?:/fan::
  7832. Suspend Permit
  7833. Fan := PlayerInput("Fan-ID: ")
  7834.  
  7835. GetPlayerNameById(Fan, name)
  7836. SendChat("/me gibt " name " ein Autogramm.")
  7837. SendChat("/showbadge " Fan "")
  7838. return
  7839.  
  7840.  
  7841. :?:/kochen::
  7842. Suspend Permit
  7843. SendChat("/cook fish 1")
  7844. SendChat("/cook fish 2")
  7845. Sleep 1250
  7846. SendChat("/cook fish 3")
  7847. SendChat("/cook fish 4")
  7848. Sleep 1250
  7849. SendChat("/cook fish 5")
  7850. return
  7851.  
  7852. :?:/cf::
  7853. Suspend Permit
  7854. SendChat("/cook fish 1")
  7855. Sleep,1000
  7856. SendChat("/cook fish 2")
  7857. Sleep,1000
  7858. SendChat("/cook fish 3")
  7859. Sleep,1000
  7860. SendChat("/cook fish 4")
  7861. Sleep,1000
  7862. SendChat("/cook fish 5")
  7863. Sleep,1000
  7864. return
  7865.  
  7866. :?:/re::
  7867. Suspend Permit
  7868. Loop, read, %A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  7869. {
  7870. if InStr(A_LoopReadLine, ", Sender: " . Name)
  7871. continue
  7872. {
  7873. if InStr(A_LoopReadLine, ", Sender: ")
  7874. {
  7875. RegExMatch(A_LoopReadLine, ", Sender: .* \((.*)\)" ,SMS)
  7876. }
  7877. }
  7878. }
  7879. SendInput /sms %SMS1%{space}
  7880. return
  7881.  
  7882. :?:/read::
  7883. Suspend Permit
  7884. Loop, read, %A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  7885. {
  7886. if InStr(A_LoopReadLine, "[Werbung] ")
  7887. {
  7888. RegExMatch(A_LoopReadLine, "\[Werbung\] (.*)\, (.*) \((.*)\)" ,AD)
  7889. }
  7890. }
  7891. SendInput /sms %AD3%{space}
  7892. return
  7893.  
  7894. ~,::
  7895. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  7896. {
  7897. return
  7898. }
  7899. SendChat("Stoppuhr gestartet!")
  7900. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Um die Stoppuhr zu beenden, dr?ke '.'")
  7901. zeit=0
  7902. Loop,
  7903. {
  7904. zeit++
  7905. KeyWait, ., D T1
  7906. If !ErrorLevel
  7907. {
  7908. If ( Pr?ungszeit < 1000)
  7909. {
  7910. minuten=%zeit%
  7911. minuten/=60
  7912. minuten1=%minuten%
  7913. minuten1*=60
  7914. sekunden=%zeit%
  7915. sekunden-=%minuten1%
  7916. SendChat("Stoppuhr gestoppt. Minute: " . minuten . " Sekunden: " . Sekunden)
  7917. SendChat("Gesamt: " . zeit . " Sekunden")
  7918. break
  7919. }
  7920. }
  7921. }
  7922. return
  7923.  
  7924.  
  7925. :?:/fischen::
  7926. Suspend Permit
  7927. If (IsPlayerinAnyInterior() == 1)
  7928. {
  7929.  
  7930. Geld_vorher := GetPlayerMoney()
  7931. SendChat("/sell fish 1")
  7932. sleep 200
  7933. GetChatLine(0, chat)
  7934. if(InStr(chat, "Du bist in keinem 24-7!"))
  7935. {
  7936. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du befindest dich nicht in einem {04B431}24/7{FFFFFF} Shop.")
  7937. return
  7938. }
  7939. Sleep, 300
  7940. SendChat("/sell fish 2")
  7941. sleep 500
  7942. SendChat("/sell fish 3")
  7943. sleep 500
  7944. SendChat("/sell fish 4")
  7945. sleep 500
  7946. SendChat("/sell fish 5")
  7947. sleep 500
  7948. Geld_nachher := GetPlayerMoney()
  7949. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Erworbenes Geld durch Verkauf: {FFBF00}" Geld_nachher - Geld_vorher "{FFFFFF}$.")
  7950. return
  7951. }
  7952. else
  7953. {
  7954.  
  7955. Loop
  7956. {
  7957. Sleep, 600
  7958. SendChat("/fish")
  7959. Sleep, 200
  7960. GetChatLine(0, chat)
  7961. if(InStr(chat, "Du bist an keinem Angelplatz (Big Wheel Rods) oder an einem Fischerboot!") || InStr(chat, "Du kannst nur 5 Fische bei dir tragen.") || InStr(chat, "Du kannst momentan nicht Angeln. Bitte warte einige Minuten."))
  7962. {
  7963. if(InStr(chat, "Du kannst momentan nicht Angeln. Bitte warte einige Minuten."))
  7964. {
  7965. SetTimer, Fischen, 1200000
  7966. }
  7967. Loop 25
  7968. {
  7969. fischges += fisch%A_Index%
  7970. }
  7971. if(fischges > 0)
  7972. {
  7973. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du erh?st: {FFBF00}" fischges "{FFFFFF}$ .")
  7974. fischLBS := fischLBSGesamt / 3
  7975. fischLBS := Round(fischLBS, 0)
  7976. {
  7977. fisch%A_Index% := 0
  7978. }
  7979. fischges := 0
  7980. fischLBS := 0
  7981. fischLBSGesamt := 0
  7982. }
  7983.  
  7984. break
  7985. }
  7986. if(InStr(chat, "Du hast ein/e ") AND RegExMatch(chat, "Du hast ein/e (.*) mit (.*) LBS gefangen.", chat))
  7987. {
  7988. if(chat1 == "Bernfisch")
  7989. {
  7990. fischLBSGesamt += chat2
  7991. fisch%A_Index% := chat2 * 1
  7992. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  7993. }
  7994. else if(chat1 == "Blauer F?herfisch")
  7995. {
  7996. fischLBSGesamt += chat2
  7997. fisch%A_Index% := chat2 * 2
  7998. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  7999. }
  8000. else if(chat1 == "Zackenbarsch")
  8001. {
  8002. fischLBSGesamt += chat2
  8003. fisch%A_Index% := chat2 * 3
  8004. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8005. }
  8006. else if(chat1 == "Schwertfisch")
  8007. {
  8008. fischLBSGesamt += chat2
  8009. fisch%A_Index% := chat2 * 3
  8010. }
  8011. else if (chat1 == "Roter Schnapper")
  8012. {
  8013. fischLBSGesamt += chat2
  8014. fisch%A_Index% := chat2 * 3
  8015. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8016. }
  8017. else if(chat1 == "Katzenfisch")
  8018. {
  8019. fischLBSGesamt += chat2
  8020. fisch%A_Index% := chat2 * 4
  8021. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8022. }
  8023. else if(chat1 == "Forelle")
  8024. {
  8025. fischLBSGesamt += chat2
  8026. fisch%A_Index% := chat2 * 5
  8027. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8028. }
  8029. else if(chat1 == "Segelfisch")
  8030. {
  8031. fischLBSGesamt += chat2
  8032. fisch%A_Index% := chat2 * 7
  8033. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8034. }
  8035. else if(chat1 == "Hai")
  8036. {
  8037. fischLBSGesamt += chat2
  8038. fisch%A_Index% := chat2 * 7
  8039. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8040. }
  8041. else if(chat1 == "Delphin")
  8042. {
  8043. fischLBSGesamt += chat2
  8044. fisch%A_Index% := chat2 * 7
  8045. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8046. }
  8047. else if(chat1 == "Makrele")
  8048. {
  8049. fischLBSGesamt += chat2
  8050. fisch%A_Index% := chat2 * 8
  8051. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8052. }
  8053. else if(chat1 == "Hecht")
  8054. {
  8055. fischLBSGesamt += chat2
  8056. fisch%A_Index% := chat2 * 9
  8057. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8058. }
  8059. else if(chat1 == "Aal")
  8060. {
  8061. fischLBSGesamt += chat2
  8062. fisch%A_Index% := chat2 * 9
  8063. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8064. }
  8065. else if(chat1 == "Schildkr?e")
  8066. {
  8067. fischLBSGesamt += chat2
  8068. fisch%A_Index% := chat2 * 10
  8069. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8070. }
  8071. else if(chat1 == "Thunfisch")
  8072. {
  8073. fischLBSGesamt += chat2
  8074. fisch%A_Index% := chat2 * 12
  8075. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8076. }
  8077. else if(chat1 == "Wolfbarsch")
  8078. {
  8079. fischLBSGesamt += chat2
  8080. fisch%A_Index% := chat2 * 12
  8081. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fisch: " chat1 " - " fisch%A_Index% "$")
  8082. }
  8083. continue
  8084. }
  8085.  
  8086. }
  8087. }
  8088. return
  8089.  
  8090. Fischen:
  8091. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du kannst nun wieder am Angelsteg angeln.")
  8092. SetTimer, Fischen, off
  8093. return
  8094.  
  8095. :?:/chat::
  8096. Suspend Permit
  8097. AddChatMessage(0xFFFFFF, " ")
  8098. AddChatMessage(0xFFFFFF, " ")
  8099. AddChatMessage(0xFFFFFF, " ")
  8100. AddChatMessage(0xFFFFFF, " ")
  8101. AddChatMessage(0xFFFFFF, " ")
  8102. AddChatMessage(0xFFFFFF, " ")
  8103. AddChatMessage(0xFFFFFF, " ")
  8104. AddChatMessage(0xFFFFFF, " ")
  8105. AddChatMessage(0xFFFFFF, " ")
  8106. AddChatMessage(0xFFFFFF, " ")
  8107. AddChatMessage(0xFFFFFF, " ")
  8108. AddChatMessage(0xFFFFFF, " ")
  8109. AddChatMessage(0xFFFFFF, " ")
  8110. AddChatMessage(0xFFFFFF, " ")
  8111. AddChatMessage(0xFFFFFF, " ")
  8112. AddChatMessage(0xFFFFFF, " ")
  8113. AddChatMessage(0xFFFFFF, " ")
  8114. AddChatMessage(0xFFFFFF, " ")
  8115. AddChatMessage(0xFFFFFF, " ")
  8116. AddChatMessage(0xFFFFFF, " ")
  8117. AddChatMessage(0xFFFFFF, " ")
  8118. AddChatMessage(0xFFFFFF, " ")
  8119. AddChatMessage(0xFFFFFF, " ")
  8120. AddChatMessage(0xFFFFFF, " ")
  8121. AddChatMessage(0xFFFFFF, " ")
  8122. AddChatMessage(0xFFFFFF, " ")
  8123. AddChatMessage(0xFFFFFF, " ")
  8124. AddChatMessage(0xFFFFFF, " ")
  8125. AddChatMessage(0xFFFFFF, " ")
  8126. AddChatMessage(0xFFFFFF, " ")
  8127. AddChatMessage(0xFFFFFF, " ")
  8128. AddChatMessage(0xFFFFFF, " ")
  8129. AddChatMessage(0xFFFFFF, " ")
  8130. AddChatMessage(0xFFFFFF, " ")
  8131. AddChatMessage(0xFFFFFF, " ")
  8132. AddChatMessage(0xFFFFFF, " ")
  8133. AddChatMessage(0xFFFFFF, " ")
  8134. AddChatMessage(0xFFFFFF, " ")
  8135. AddChatMessage(0xFFFFFF, " ")
  8136. AddChatMessage(0xFFFFFF, " ")
  8137. AddChatMessage(0xFFFFFF, " ")
  8138. AddChatMessage(0xFFFFFF, " ")
  8139. AddChatMessage(0xFFFFFF, " ")
  8140. AddChatMessage(0xFFFFFF, " ")
  8141. AddChatMessage(0xFFFFFF, " ")
  8142. AddChatMessage(0xFFFFFF, " ")
  8143. AddChatMessage(0xFFFFFF, " ")
  8144. AddChatMessage(0xFFFFFF, " ")
  8145. AddChatMessage(0xFFFFFF, " ")
  8146. AddChatMessage(0xFFFFFF, " ")
  8147. AddChatMessage(0xFFFFFF, " ")
  8148. AddChatMessage(0xFFFFFF, " ")
  8149. AddChatMessage(0xFFFFFF, " ")
  8150. AddChatMessage(0xFFFFFF, " ")
  8151. AddChatMessage(0xFFFFFF, " ")
  8152. AddChatMessage(0xFFFFFF, " ")
  8153. AddChatMessage(0xFFFFFF, " ")
  8154. AddChatMessage(0xFFFFFF, " ")
  8155. AddChatMessage(0xFFFFFF, " ")
  8156. AddChatMessage(0xFFFFFF, " ")
  8157. AddChatMessage(0xFFFFFF, " ")
  8158. AddChatMessage(0xFFFFFF, " ")
  8159. AddChatMessage(0xFFFFFF, " ")
  8160. AddChatMessage(0xFFFFFF, " ")
  8161. AddChatMessage(0xFFFFFF, " ")
  8162. AddChatMessage(0xFFFFFF, " ")
  8163. AddChatMessage(0xFFFFFF, " ")
  8164. AddChatMessage(0xFFFFFF, " ")
  8165. AddChatMessage(0xFFFFFF, " ")
  8166. AddChatMessage(0xFFFFFF, " ")
  8167. AddChatMessage(0xFFFFFF, " ")
  8168. AddChatMessage(0xFFFFFF, " ")
  8169. AddChatMessage(0xFFFFFF, " ")
  8170. AddChatMessage(0xFFFFFF, " ")
  8171. AddChatMessage(0xFFFFFF, " ")
  8172. AddChatMessage(0xFFFFFF, " ")
  8173. AddChatMessage(0xFFFFFF, " ")
  8174. AddChatMessage(0xFFFFFF, " ")
  8175. AddChatMessage(0xFFFFFF, " ")
  8176. AddChatMessage(0xFFFFFF, " ")
  8177. AddChatMessage(0xFFFFFF, " ")
  8178. AddChatMessage(0xFFFFFF, " ")
  8179. AddChatMessage(0xFFFFFF, " ")
  8180. AddChatMessage(0xFFFFFF, " ")
  8181. AddChatMessage(0xFFFFFF, " ")
  8182. AddChatMessage(0xFFFFFF, " ")
  8183. AddChatMessage(0xFFFFFF, " ")
  8184. AddChatMessage(0xFFFFFF, " ")
  8185. return
  8186.  
  8187. :?:/alotto::
  8188. Suspend Permit
  8189. Random, rand, 1, 200
  8190. SendChat("/lotto " rand)
  8191. return
  8192.  
  8193.  
  8194. :?:/abholung::
  8195. Suspend Permit
  8196. if(PoliceID != "X")
  8197. {
  8198. if(text != "-1")
  8199. {
  8200. SendChat("/hq " . text . "")
  8201. }
  8202. }
  8203. else
  8204. {
  8205. GetZoneName(MyZone)
  8206. GetCityName(City)
  8207. If (city == "" || city == "Unbekannt")
  8208. {
  8209. SendChat("/hq Erbitte Abholung in " MyZone ".")
  8210. }
  8211. else
  8212. {
  8213. SendChat("/hq Erbitte Abholung in "MyZone ", " city ".")
  8214. }
  8215. }
  8216. return
  8217. :?:/kabholung::
  8218. Suspend Permit
  8219. if(PoliceID != "X")
  8220. {
  8221. if(text != "-1")
  8222. {
  8223. SendChat("/hq " . text . "")
  8224. }
  8225. }
  8226. else
  8227. {
  8228. SendChat("/hq Eine Abholung wird nicht mehr ben?igt.")
  8229. }
  8230. return
  8231.  
  8232. :?:/stw::
  8233. Suspend Permit
  8234. GetZoneName(MyZone)
  8235. GetCityName(City)
  8236. If (city == "" || city == "Unbekannt")
  8237. {
  8238. SendChat("/hq ben?ige einen Streifenwagen in " MyZone ".")
  8239. }
  8240. else
  8241. {
  8242. SendChat("/hq ben?ige einen Streifenwagen in "MyZone ", " city ".")
  8243. }
  8244. return
  8245.  
  8246. :?:/beweise::
  8247. Suspend Permit
  8248. SendChat("Haben Sie daf? Beweise? (Screenshot, Video, Zeugen etc..)")
  8249. return
  8250.  
  8251. :?:/uc::
  8252. Suspend Permit
  8253. SendInput, /undercover{space}
  8254. return
  8255. :?:/auc::
  8256. Suspend Permit
  8257. Random, skin,1,34
  8258. SendChat("/undercover " skin)
  8259. return
  8260.  
  8261. :?:/vf::
  8262. Suspend Permit
  8263. if(PoliceID != "X")
  8264. {
  8265. if(text != "-1")
  8266. {
  8267. SendChat("/f " . text . "")
  8268. }
  8269. }
  8270. else
  8271. {
  8272. GetPlayerName(myName)
  8273. id := PlayerInput("Verbrecher-ID: ")
  8274. if(IsNumeric(id))
  8275. {
  8276. GetPlayerNameByID(id, Verbrechername)
  8277. }
  8278. SendChat("/r " myName " verfolgt nun " Verbrechername)
  8279.  
  8280. if(id != "")
  8281. {
  8282. SetTimer, Find,Off
  8283. findid := id
  8284. SendChat("/find " findid)
  8285. SetTimer, Find,6000
  8286. }
  8287. }
  8288. return
  8289.  
  8290. :?:/verfolgung::
  8291. Suspend Permit
  8292. verbrecher := PlayerInput("Verbrecher-ID | Voller Name: ")
  8293. if(verbrecher < 0 || verbrecher > 400)
  8294. {
  8295. caID := GetPlayerIDByName(verbrecher)
  8296. verbrecher=%caID%
  8297. }
  8298. GetPlayerNameById(caID, Verbrechername)
  8299. if(verbrechername == -1)
  8300. {
  8301. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dieser Spieler ist nicht Online.")
  8302. }
  8303. else
  8304. {
  8305. SendChat("/r HQ: Erbitte Unterst?zung bei der Verfolgung von " verbrechername " (" verbrecher ").")
  8306. }
  8307. return
  8308.  
  8309. :?:/ort::
  8310. Suspend Permit
  8311. ort := PlayerInput("Letzter bekannter Aufenthaltsort: ")
  8312. SendChat("/r Letzter bekannter Aufenthaltsort: " ort ".")
  8313. return
  8314.  
  8315. :?:/luft::
  8316. Suspend Permit
  8317. GetZoneName(MyZone)
  8318. GetCityName(City)
  8319. If (city == "" || city == "Unbekannt")
  8320. {
  8321. SendChat("/r HQ: Fordere Luft?erwachung im Sektor "MyZone " an.")
  8322. }
  8323. else
  8324. {
  8325. SendChat("/r HQ: Fordere Luft?erwachung im Sektor "MyZone ", " city " an.")
  8326. }
  8327. return
  8328.  
  8329.  
  8330. :?:/settax::
  8331. Suspend Permit
  8332. SendCHat("/tax")
  8333. Sleep 250
  8334. GetChatLine(0, chat1)
  8335. RegExMatch(chat1, "{00FF33}Steuerklasse 4: (.*) Prozent", haha)
  8336. Steuersatz=100
  8337. Steuersatz-=%haha1%
  8338. Steuerlappen=0.%Steuersatz%
  8339. IniWrite, %Steuerlappen%, settings.ini, Steuern, Steuersatz
  8340. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Steuersatz hat sich auf {FFBF00}" . haha1 . "{FFFFFF} Prozent gesetzt.")
  8341. return
  8342.  
  8343.  
  8344.  
  8345. :?:/partner1::
  8346. Suspend Permit
  8347. if(Partner1 == -1)
  8348. {
  8349. SendInput, Gebe deine Partner ID ein:{Space}
  8350. Input, caID, V I M,{Enter}
  8351. SendInput {end}+{home}{Del}{Esc}
  8352. Partner1=%caID%
  8353.  
  8354. if(Partner1 < 0 || Partner1 > 400)
  8355. {
  8356. caID := GetPlayerIDByName(Partner1)
  8357. Partner1=%caID%
  8358. }
  8359. GetPlayerNameById(caID, partnername1)
  8360. if(partnername1 == "" || partnername1 == " ")
  8361. {
  8362. partnername1 := "ID " . caID . ""
  8363. }
  8364. if(partnername1 == -1)
  8365. {
  8366. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dieser Spieler ist nicht Online.")
  8367. Partner1 := -1
  8368. }
  8369. else
  8370. {
  8371. SendChat("/hq " . partnername1 . " wurde als Dienstpartner eingetragen. (1)")
  8372. AddChatMessage(0xDF0101, "[Atano-Binder] {FFBF00}" partnername1 "{FFFFFF} wurde als Dienstpartner eingetragen. (1)")
  8373. Sleep, 200
  8374. IniRead, Steuersatz, settings.ini, Steuern, Steuersatz
  8375. if(Steuersatz < 0 || Steuersatz > 1)
  8376. {
  8377. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Es wurde noch kein Steuersatz eingetragen, nutze bitte {FF8000}/settax{FFFFFF} oder {FF8000}/updatesteuersatz")
  8378. }
  8379.  
  8380. }
  8381. }
  8382. else
  8383. {
  8384.  
  8385. SendChat("/hq Partner 1 wurde entfernt")
  8386. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Streifenpartner (1) wurde entfernt.")
  8387. Partner1 := -1
  8388. Partnername := -1
  8389. }
  8390.  
  8391. if(Streife == 1)
  8392. {
  8393. AnzahlPersonen := 1
  8394. AnzahlPersonen += ErmittelPartnerZahl()
  8395. PoliceID := "" . Streifennummer . "-" . Einheit . "-" . AnzahlPersonen . ""
  8396. }
  8397. return
  8398.  
  8399. :?:/partner2::
  8400. Suspend Permit
  8401. if(Partner2 == -1)
  8402. {
  8403. SendInput, Gebe deine Partner ID ein:{Space}
  8404. Input, caID, V I M,{Enter}
  8405. SendInput {end}+{home}{Del}{Esc}
  8406. Partner2=%caID%
  8407.  
  8408. if(Partner2 < 0 || Partner2 > 400)
  8409. {
  8410. caID := GetPlayerIDByName(Partner2)
  8411. Partner2=%caID%
  8412. }
  8413. GetPlayerNameById(caID, partnername2)
  8414. if(partnername2 == "" || partnername2 == " ")
  8415. {
  8416. partnername2 := "ID " . caID . ""
  8417. }
  8418. if(partnername2 == -1)
  8419. {
  8420. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dieser Spieler ist nicht Online.")
  8421. Partner2 := -1
  8422. }
  8423. else
  8424. {
  8425. SendChat("/hq " . partnername2 . " wurde als Dienstpartner eingetragen. (2)")
  8426. AddChatMessage(0xDF0101, "[Atano-Binder] {FFBF00}" partnername2 "{FFFFFF} wurde als Dienstpartner eingetragen. (1)")
  8427. IniRead, Steuersatz, settings.ini, Steuern, Steuersatz
  8428. if(Steuersatz < 0 || Steuersatz > 1)
  8429. {
  8430. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Es wurde noch kein Steuersatz eingetragen, nutze bitte {FFBF00}/settax{FFFFFF} oder {FFBF00}/updatesteuersatz{FFFFFF}.")
  8431. }
  8432. }
  8433. }
  8434. else
  8435. {
  8436. SendChat("/hq Der Streifenpartner (2) wurde entfernt.")
  8437. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Streifenpartner (2) wurde entfernt.")
  8438. Partner2 := -1
  8439. Partnername := -1
  8440. }
  8441. if(Streife == 1)
  8442. {
  8443. AnzahlPersonen := 1
  8444. AnzahlPersonen += ErmittelPartnerZahl()
  8445. PoliceID := "" . Streifennummer . "-" . Einheit . "-" . AnzahlPersonen . ""
  8446. }
  8447. return
  8448.  
  8449. :?:/partner3::
  8450. Suspend Permit
  8451. if(Partner3 == -1)
  8452. {
  8453. SendInput, Gebe deine Partner ID ein:{Space}
  8454. Input, caID, V I M,{Enter}
  8455. SendInput {end}+{home}{Del}{Esc}
  8456. Partner3=%caID%
  8457.  
  8458. if(Partner3 < 0 || Partner3 > 400)
  8459. {
  8460. caID := GetPlayerIDByName(Partner3)
  8461. Partner1=%caID%
  8462. }
  8463. GetPlayerNameById(caID, partnername3)
  8464. if(partnername3 == "" || partnername3 == " ")
  8465. {
  8466. partnername3 := "ID " . caID . ""
  8467. }
  8468. if(partnername3 == -1)
  8469. {
  8470. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dieser Spieler ist nicht Online.")
  8471. Partner3 := -1
  8472. }
  8473. else
  8474. {
  8475. SendChat("/hq " . partnername3 . " wurde als Dienstpartner eingetragen. (3)")
  8476. AddChatMessage(0xDF0101, "[Atano-Binder] {FFBF00}" partnername3 "{FFFFFF} wurde als Dienstpartner eingetragen. (3)")
  8477. IniRead, Steuersatz, settings.ini, Steuern, Steuersatz
  8478. if(Steuersatz < 0 || Steuersatz > 1)
  8479. {
  8480. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Es wurde noch kein Steuersatz eingetragen, nutze bitte {FFBF00}/settax{FFFFFF} oder {FFBF00}/updatesteuersatz{FFFFFF}.")
  8481. }
  8482.  
  8483. }
  8484. }
  8485. else
  8486. {
  8487. SendChat("/hq Der Streifenpartner (3) wurde entfernt.")
  8488. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Streifenpartner (3) wurde entfernt.")
  8489. Partner3 := -1
  8490. Partnername := -1
  8491. }
  8492. if(Streife == 1)
  8493. {
  8494. AnzahlPersonen := 1
  8495. AnzahlPersonen += ErmittelPartnerZahl()
  8496. PoliceID := "" . Streifennummer . "-" . Einheit . "-" . AnzahlPersonen . ""
  8497. }
  8498. return
  8499.  
  8500. :?:/partners::
  8501. Suspend Permit
  8502.  
  8503.  
  8504. If(Partner1 > -1)
  8505. {
  8506. GetPlayerNameByID(Partner1, partnername1_temp)
  8507. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} 1. Streifenpartner: " partnername1_temp " [ID: " Partner1 "]")
  8508. }
  8509. else
  8510. {
  8511. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} 1. Streifenpartner: / ")
  8512. }
  8513.  
  8514. if(Partner2 > -1)
  8515. {
  8516. GetPlayerNameByID(Partner2, partnername2_temp)
  8517. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} 2. Streifenpartner: " partnername2_temp " [ID: " Partner2 "]")
  8518. }
  8519. else
  8520. {
  8521. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} 2. Streifenpartner: / ")
  8522. }
  8523.  
  8524. if(Partner3 > -1)
  8525. {
  8526. GetPlayerNameByID(partner3, partnername3_temp)
  8527. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} 3. Streifenpartner: " partnername3_temp " [ID: " Partner3 "]")
  8528. }
  8529. else
  8530. {
  8531. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} 3. Streifenpartner: / ")
  8532. }
  8533. return
  8534.  
  8535.  
  8536. :?:/wt::
  8537. Suspend Permit
  8538. ID := PlayerInput("Spieler-Name: ")
  8539. if(ID != "" && ID != " ")
  8540. {
  8541. Grund := PlayerInput("Wantedgrund: ")
  8542. if(Grund != "" && Grund != " ")
  8543. {
  8544. SendChat("/d HQ: Bitte ID " ID " Wanteds eintragen, Grund: " Grund ".")
  8545. }
  8546. }
  8547. return
  8548.  
  8549. :?:/kontrolle::
  8550. Suspend Permit
  8551. SendInput, /frisk{Space}
  8552. Input, caID, V I M,{Enter}
  8553. Send {Enter}
  8554. SendChat("/waffen " . caID . "")
  8555. Sleep 2000
  8556. SendChat("/alktest " . caID . "")
  8557. return
  8558.  
  8559.  
  8560. :?:/warten::
  8561. Suspend Permit
  8562. SendChat("/l Bitte warten Sie einen Moment, ich ?erpr?e die G?tigkeit Ihrer Dokumente.")
  8563. return
  8564.  
  8565. :?:/rechte::
  8566. Suspend Permit
  8567. SendChat("Sie haben das Recht zu schweigen. Alles was Sie sagen, kann und wird vor Gericht gegen Sie verwendet werden.")
  8568. Sleep, 1500
  8569. SendChat("Sie haben das Recht auf einen Anwalt. K?nen Sie sich keinen leisten wird Ihnen einer gestellt.")
  8570. Sleep, 2000
  8571. SendChat("Haben Sie Ihre Rechte verstanden welche ich Ihnen vorgelesen hab?")
  8572. return
  8573.  
  8574. :?:/passieren::
  8575. Suspend Permit
  8576. SendChat("Sie d?fen passieren.")
  8577. SendChat("Ich w?sche Ihnen eine gute Weiterfahrt. Auf Wiedersehen.")
  8578. return
  8579.  
  8580. :?:/runter::
  8581. Suspend Permit
  8582. SendChat("/l Steigen Sie bitte umgehend vom Fahrzeug.")
  8583. Sleep, 750
  8584. SendChat("/l Ansonsten sind wir gezwungen Sie wegen Verweigerung zu verhaften.")
  8585. return
  8586.  
  8587. ~2::
  8588. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8589. {
  8590. SendInput, {A_ThisHotkey}
  8591. return
  8592. }
  8593. SendChat("/l Guten Tag Sir, d?fen wir Sie auf Drogen und Waffenbesitz ?erpr?en?")
  8594. SendChat("/l Sollten Sie sich weigern, bekommen Sie ein Wanted und werden verhaftet!")
  8595. Sleep, 850
  8596. SendChat("/l Bitte antworten Sie mit 'Ja' oder 'Nein'.")
  8597. return
  8598.  
  8599. ~+::
  8600. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8601. {
  8602. SendInput, {A_ThisHotkey}
  8603. return
  8604. }
  8605. IniRead, Kills, Statistik.ini, Kills, Kills
  8606. Kills++
  8607. IniWrite, %Kills%, Statistik.ini, Kills, Kills
  8608. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Dies war dein {FFBF00}" Kills "{FFFFFF}. Kill.")
  8609. return
  8610.  
  8611.  
  8612. ~3::
  8613. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8614. {
  8615. SendInput, {A_ThisHotkey}
  8616. return
  8617. }
  8618. playerid := GetPlayerID()
  8619. if(playerid == "" || playerid == " " || playerid == "65535")
  8620. {
  8621. UpdateServerData()
  8622. playerid := GetPlayerID()
  8623. if(playerid == "" || playerid == " " || playerid == "65535")
  8624. {
  8625. playerid := name
  8626. }
  8627. }
  8628. SendChat("/l Bitte zeigen Sie mir Ihre Scheine. (/scheine " . playerid . ")")
  8629. return
  8630.  
  8631. ~k::
  8632. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8633. {
  8634. return
  8635. }
  8636. caID := PlayerInput("Kontrolle: ")
  8637. SendChat("/alktest " caID)
  8638. SendChat("/waffen " caID)
  8639. sleep, 1500
  8640. SendChat("/frisk " caID)
  8641. return
  8642.  
  8643. ~4::
  8644. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8645. {
  8646. SendInput, {A_ThisHotkey}
  8647. return
  8648. }
  8649. SendChat("Vielen Dank f? Ihre Kooperation.")
  8650. return
  8651.  
  8652. ~5::
  8653. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8654. {
  8655. SendInput, {A_ThisHotkey}
  8656. return
  8657. }
  8658. SendChat("/l Steigen Sie bitte aus Ihrem Fahrzeug.")
  8659. return
  8660.  
  8661. ~6::
  8662. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8663. {
  8664. SendInput, {A_ThisHotkey}
  8665. return
  8666. }
  8667. If(IsPlayerInAnyInterior())
  8668. {
  8669. SendChat("/l Sie sind vorl?fig festgenommen, verlassen Sie das Geb?de und steigen Sie in den Dienstwagen.")
  8670. }else{
  8671. SendChat("/l Sie sind vorl?fig festgenommen, steigen Sie bitte in das Dienstfahrzeug.")
  8672. }
  8673. return
  8674.  
  8675. ~7::
  8676. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8677. {
  8678. SendInput, {A_ThisHotkey}
  8679. return
  8680. }
  8681. SendChat("/l Sie sind vorl?fig festgenommen, bitte laufen Sie zu den Zellen des Police Departments.")
  8682.  
  8683. return
  8684.  
  8685. ~8::
  8686. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8687. {
  8688. SendInput, {A_ThisHotkey}
  8689. return
  8690. }
  8691. SendChat("/ram")
  8692. return
  8693.  
  8694. ~9::
  8695. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8696. {
  8697. SendInput, {A_ThisHotkey}
  8698. return
  8699. }
  8700. id := PlayerInput("Grab: ")
  8701. SendChat("/grab " id)
  8702. return
  8703.  
  8704. ~^!8::
  8705. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8706. {
  8707. return
  8708. }
  8709. SendInput, t/ungrab{space}
  8710. return
  8711.  
  8712. ~B::
  8713. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8714. {
  8715. return
  8716. }
  8717. if(IsPlayerInAnyVehicle() == "0")
  8718. {
  8719. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug")
  8720. }
  8721. else
  8722. {
  8723. SendChat("/uclight")
  8724. }
  8725. return
  8726.  
  8727. ~J::
  8728. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8729. {
  8730. return
  8731. }
  8732. if(IsPlayerInAnyVehicle() == "0")
  8733. {
  8734. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist in keinem Fahrzeug")
  8735. }
  8736. else
  8737. {
  8738. SendChat("/policelight")
  8739. }
  8740. return
  8741.  
  8742.  
  8743. ~I::
  8744. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8745. {
  8746. return
  8747. }
  8748. SendChat("/l Bitte stecken Sie umgehend Ihre Waffen ein.")
  8749. return
  8750.  
  8751. !E::
  8752. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8753. {
  8754. return
  8755. }
  8756. SendInput, t/eject{space}
  8757. return
  8758.  
  8759. ~?:
  8760. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8761. {
  8762. return
  8763. }
  8764. SendInput t{up}{enter}
  8765. return
  8766.  
  8767.  
  8768.  
  8769.  
  8770.  
  8771.  
  8772.  
  8773. ^Numpad0::
  8774. id := PlayerInput("Rote Ampel missachtet: ")
  8775. SendChat("/punkte " id " 2 Missachtung roter Ampeln")
  8776. return
  8777.  
  8778. ^Numpad1::
  8779. id := PlayerInput("SVG: ")
  8780. SendChat("/punkte " id " 2 Stra?nverkehrsgef?rdung")
  8781. return
  8782.  
  8783. ^Numpad2::
  8784. id := PlayerInput("Falsche Seite: ")
  8785. SendChat("/punkte " id " 2 Fahren auf der falschen Stra?nseite")
  8786. return
  8787.  
  8788. ^Numpad3::
  8789. id := PlayerInput("Zu schnell: ")
  8790. SendChat("/punkte " id " 2 ?erschreitung der H?hstgeschwindigkeit")
  8791. return
  8792.  
  8793. ^Numpad4::
  8794. id := PlayerInput("Vorfahrt: ")
  8795. SendChat("/punkte " id " 2 Missachtung der Vorfahrt")
  8796. return
  8797.  
  8798. ^Numpad5::
  8799. id := PlayerInput("Abseits: ")
  8800. SendChat("/punkte " id " 2 Fahren abseits der Stra?")
  8801. return
  8802.  
  8803. ^Numpad6::
  8804. id := PlayerInput("Ohne Licht: ")
  8805. SendChat("/punkte " id " 1 Fahren ohne Licht")
  8806. return
  8807.  
  8808. ^Numpad7::
  8809. GetZoneName(MyZone)
  8810. id := PlayerInput("Parkverbot: ")
  8811. SendChat("/punkte " id " 1 Parken im Parkverbot [" . MyZone . "]")
  8812. return
  8813.  
  8814. ^Numpad8::
  8815. id := PlayerInput("SVB: ")
  8816. SendChat("/punkte " id " 2 Stra?nverkehrsbehinderung")
  8817. return
  8818.  
  8819. ^Numpad9::
  8820. id := PlayerInput("Alkoholeinfluss: ")
  8821. SendChat("/punkte " id " 4 Fahren unter Alkohol-/Drogeneinfluss")
  8822. return
  8823.  
  8824.  
  8825.  
  8826. ~NumpadDot::
  8827. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8828. {
  8829. return
  8830. }
  8831. SendChat("/m >> Bitte halten Sie sich an die Stra?nverkehrsordnung <<")
  8832. return
  8833.  
  8834.  
  8835. ~Numpad0::
  8836. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8837. {
  8838. return
  8839. }
  8840. if(watermode == 1)
  8841. {
  8842. SendChat("/m >> STOP FBI, STOP THE CAR! <<")
  8843. }
  8844. else if(swatmode == 1)
  8845. {
  8846. SendChat("/m >> SWAT, " . Swatabteilung . " bitte folgen Sie dem Einsatzfahrzeug <<")
  8847. }
  8848. else
  8849. {
  8850. If(Abteilung = "" || Abteilung = "ERROR")
  8851. {
  8852. SendChat("/m >> " . Fraktion . ", bitte folgen Sie dem Polizeiwagen <<")
  8853. }
  8854. else
  8855. {
  8856. SendChat("/m >> " . Abteilung . ", bitte folgen Sie dem Polizeiwagen <<")
  8857. }
  8858. }
  8859. return
  8860.  
  8861. ~Numpad1::
  8862. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8863. {
  8864. SendInput, {A_ThisHotkey}
  8865. return
  8866. }
  8867. if(watermode == 1)
  8868. {
  8869. SendChat("/m >> K?tenwache, Wasserverkehrskontrolle. Halten Sie bitte an <<")
  8870. }
  8871. else if(swatmode == 1)
  8872. {
  8873. SendChat("/m >> SWAT, " . Swatabteilung . " Stra?nverkehrskontrolle. Fahren Sie SOFORT rechts ran! <<")
  8874. }
  8875. else
  8876. {
  8877. If(Abteilung = "" || Abteilung = "ERROR")
  8878. {
  8879. SendChat("/m >> " . Fraktion . ", Stra?nverkehrskontrolle. Fahren Sie bitte rechts ran <<")
  8880. }
  8881. else
  8882. {
  8883. SendChat("/m >> " . Abteilung . ", Stra?nverkehrskontrolle. Fahren Sie bitte rechts ran <<")
  8884. }
  8885. }
  8886. return
  8887.  
  8888. ~Numpad2::
  8889. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8890. {
  8891. SendInput, {A_ThisHotkey}
  8892. return
  8893. }
  8894. if(watermode == 1)
  8895. {
  8896. SendChat("/m >> K?tenwache, stoppen Sie SOFORT Ihr Boot! <<")
  8897. }
  8898. else if(swatmode == 1)
  8899. {
  8900. SendChat("/m >> SWAT, " . Swatabteilung . " halten Sie SOFORT an!<<")
  8901. }
  8902. else
  8903. {
  8904. If(Abteilung = "" || Abteilung = "ERROR")
  8905. {
  8906. SendChat("/m >> " . Fraktion . ", halten Sie SOFORT an! <<")
  8907. }
  8908. else
  8909. {
  8910. SendChat("/m >> " . Abteilung . ", halten Sie SOFORT an!<<")
  8911. }
  8912. }
  8913. return
  8914.  
  8915. ~Numpad3::
  8916. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8917. {
  8918. SendInput, {A_ThisHotkey}
  8919. return
  8920. }
  8921. SendChat("/m >> Letzte Warnung, bleiben Sie stehen oder wir schie?n! <<")
  8922. return
  8923.  
  8924. ~Numpad4::
  8925. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8926. {
  8927. SendInput, {A_ThisHotkey}
  8928. return
  8929. }
  8930. SendChat("/m >> Steigen Sie SOFORT mit erhobenen H?den aus Ihrem Fahrzeug! <<")
  8931. return
  8932.  
  8933. ~Numpad5::
  8934. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8935. {
  8936. SendInput, {A_ThisHotkey}
  8937. return
  8938. }
  8939. if(watermode == 1)
  8940. {
  8941. SendChat("/m >> K?tenwache, fahren Sie SOFORT zur Seite! <<")
  8942. }
  8943. else if(swatmode == 1)
  8944. {
  8945. SendChat("/m >> SWAT, " . Swatabteilung . " r?men Sie SOFORT die Stra?! <<")
  8946. }
  8947. else
  8948. {
  8949. If(Abteilung = "" || Abteilung = "ERROR")
  8950. {
  8951. SendChat("/m >> " . Fraktion . ", r?men Sie SOFORT die Stra?! <<")
  8952. }
  8953. else
  8954. {
  8955. SendChat("/m >> " . Abteilung . ", r?men Sie SOFORT die Stra?! <<")
  8956. }
  8957. }
  8958. return
  8959.  
  8960. ~Numpad6::
  8961. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8962. {
  8963. SendInput, {A_ThisHotkey}
  8964. return
  8965. }
  8966. if(swatmode == 1)
  8967. {
  8968. SendChat("/m >> SWAT, " . Swatabteilung . " Legen Sie SOFORT die Waffen nieder oder wir werden Gewalt anwenden! <<")
  8969. }
  8970. else
  8971. {
  8972. SendChat("/m >> Legen Sie SOFORT die Waffen nieder oder wir werden Gewalt anwenden! <<")
  8973. }
  8974. return
  8975.  
  8976. ~Numpad9::
  8977. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8978. {
  8979. SendInput, {A_ThisHotkey}
  8980. return
  8981. }
  8982. SendChat("/m >> Verlassen Sie SOFORT dieses Gel?de! <<")
  8983. return
  8984.  
  8985. ~?:
  8986. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8987. {
  8988. return
  8989. }
  8990. SendChat("/m >> Verlassen Sie SOFORT dieses Geb?de! <<")
  8991. return
  8992.  
  8993. ~Numpad7::
  8994. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  8995. {
  8996. return
  8997. }
  8998. SendInput, t/cuff{Space}
  8999. Input, SID, V I M,{Enter}
  9000. Send {Enter}
  9001. SendInput t/frisk %SID%{Enter}
  9002.  
  9003.  
  9004.  
  9005.  
  9006. if(arrest1 == -1)
  9007. {
  9008. arrest1 := SID
  9009. return
  9010. }
  9011. else if(arrest2 == -1)
  9012. {
  9013. arrest2 := SID
  9014. return
  9015. }
  9016. else if(arrest3 == -1)
  9017. {
  9018. arrest3 := SID
  9019. return
  9020. }
  9021. else if(arrest4 == -1)
  9022. {
  9023. arrest4 := SID
  9024. return
  9025. }
  9026. else if(arrest5 == -1)
  9027. {
  9028. arrest5 := SID
  9029. return
  9030. }
  9031. else
  9032. {
  9033. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Alle Arrestslots belegt, dieser Spieler wird nicht automatisch arrestet.(F9 zum Resetten)")
  9034. return
  9035. }
  9036.  
  9037. return
  9038.  
  9039.  
  9040. ~F9::
  9041. if(IsDialogOpen() == 1 || IsChatOpen() == 1)
  9042. {
  9043. return
  9044. }
  9045. arrest1 := -1
  9046. arrest2 := -1
  9047. arrest3 := -1
  9048. arrest4 := -1
  9049. arrest5 := -1
  9050. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Arrestslots zur?kgesetzt")
  9051. return
  9052.  
  9053.  
  9054. :?:/uncuff::
  9055. Suspend Permit
  9056. id := PlayerInput("/uncuff ")
  9057. SendChat("/uncuff " id)
  9058. if(arrest1 == id)
  9059. {
  9060. arrest1 = -1
  9061. return
  9062. }
  9063. else if(arrest2 == id)
  9064. {
  9065. arrest2 = -1
  9066. return
  9067. }
  9068. else if(arrest3 == id)
  9069. {
  9070. arrest3 = -1
  9071. return
  9072. }
  9073. else if(arrest4 == id)
  9074. {
  9075. arrest4 = -1
  9076. return
  9077. }
  9078. else if(arrest5 == id)
  9079. {
  9080. arrest5 = -1
  9081. return
  9082. }
  9083. return
  9084.  
  9085. ~U::
  9086. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  9087. {
  9088. return
  9089. }
  9090. id := PlayerInput("/uncuff ")
  9091. SendChat("/uncuff " id)
  9092. if(arrest1 == id)
  9093. {
  9094. arrest1 = -1
  9095. return
  9096. }
  9097. else if(arrest2 == id)
  9098. {
  9099. arrest2 = -1
  9100. return
  9101. }
  9102. else if(arrest3 == id)
  9103. {
  9104. arrest3 = -1
  9105. return
  9106. }
  9107. else if(arrest4 == id)
  9108. {
  9109. arrest4 = -1
  9110. return
  9111. }
  9112. else if(arrest5 == id)
  9113. {
  9114. arrest5 = -1
  9115. return
  9116. }
  9117. return
  9118.  
  9119. ^!Numpad7::
  9120. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  9121. {
  9122. return
  9123. }
  9124. id := PlayerInput("/uncuff ")
  9125. SendChat("/uncuff " id)
  9126. if(arrest1 == id)
  9127. {
  9128. arrest1 = -1
  9129. return
  9130. }
  9131. else if(arrest2 == id)
  9132. {
  9133. arrest2 = -1
  9134. return
  9135. }
  9136. else if(arrest3 == id)
  9137. {
  9138. arrest3 = -1
  9139. return
  9140. }
  9141. else if(arrest4 == id)
  9142. {
  9143. arrest4 = -1
  9144. return
  9145. }
  9146. else if(arrest5 == id)
  9147. {
  9148. arrest5 = -1
  9149. return
  9150. }
  9151. return
  9152.  
  9153. ~Numpad8::
  9154. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  9155. {
  9156. return
  9157. }
  9158. Suspend on
  9159. Random, rand, 1, 3
  9160. SendInput, t/arrest %rand%{left 2}
  9161. Input, SID, V I M,{Enter}
  9162. Send {Enter}
  9163. Suspend off
  9164. Countdown := 200
  9165. SetTimer, Partner, 100
  9166. if(arrest1 == SID)
  9167. {
  9168. arrest1 = -1
  9169. return
  9170. }
  9171. else if(arrest2 == SID)
  9172. {
  9173. arrest2 = -1
  9174. return
  9175. }
  9176. else if(arrest3 == SID)
  9177. {
  9178. arrest3 = -1
  9179. return
  9180. }
  9181. else if(arrest4 == SID)
  9182. {
  9183. arrest4 = -1
  9184. return
  9185. }
  9186. else if(arrest5 == SID)
  9187. {
  9188. arrest5 = -1
  9189. return
  9190. }
  9191. return
  9192.  
  9193. #Partner:
  9194. countdown--
  9195. if(countdown == 0)
  9196. {
  9197. SetTimer, #Partner, off
  9198. }
  9199. else
  9200. {
  9201. GetChatLine(0, ChatLine0)
  9202. GetChatLine(1, ChatLine1)
  9203. GetPlayerName(name)
  9204. if(InStr(ChatLine1, " " . name . " hat den Verd?htigen ") && InStr(ChatLine1, "eingesperrt."))
  9205. {
  9206. IniRead, Steuersatz, settings.ini, Steuern, Steuersatz
  9207. SetTimer, #Partner, off
  9208. RegExMatch(ChatLine0, "Haftzeit: (.*) Minuten, Geldstrafe: 0\$.", zeit)
  9209. if(zeit1 > 104)
  9210. {
  9211. Wanted = 104
  9212. }
  9213. else
  9214. {
  9215. Wanted = %zeit1%
  9216. }
  9217. Wanted /= 4
  9218. Wanted *= 750
  9219. Geld = %Wanted%
  9220. Geld *= %Steuersatz%
  9221. Geld := Floor(Geld)
  9222.  
  9223. gesamtgeld += Geld
  9224.  
  9225. Sleep, 200
  9226. IniRead, Arrest, Statistik.ini, Arrests, Arrest
  9227. Arrest++
  9228. IniWrite, %Arrest%, Statistik.ini, Arrests, Arrest
  9229. Sleep, 750
  9230. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Eingesperrte Verbrecher: {FFBF00}" Arrest "{FFFFFF}")
  9231. Sleep 200
  9232. SetTimer, #Partner, off
  9233. }
  9234. }
  9235. return
  9236. !#::
  9237. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Verbrecher in der Arrestliste:")
  9238. if(arrest1 != -1)
  9239. {
  9240.  
  9241. GetPlayerNameByID(arrest1, name)
  9242. AddChatMessage(0xFFFFFF, name)
  9243. }
  9244.  
  9245. if(arrest2 != -1)
  9246. {
  9247.  
  9248. GetPlayerNameByID(arrest2, name)
  9249. AddChatMessage(0xFFFFFF, name)
  9250. }
  9251.  
  9252. if(arrest3 != -1)
  9253. {
  9254.  
  9255. GetPlayerNameByID(arrest3, name)
  9256. AddChatMessage(0xFFFFFF, name)
  9257. }
  9258.  
  9259. if(arrest4 != -1)
  9260. {
  9261.  
  9262. GetPlayerNameByID(arrest4, name)
  9263. AddChatMessage(0xFFFFFF, name)
  9264. }
  9265.  
  9266. if(arrest5 != -1)
  9267. {
  9268.  
  9269. GetPlayerNameByID(arrest5, name)
  9270. AddChatMessage(0xFFFFFF, name)
  9271. }
  9272. return
  9273.  
  9274.  
  9275.  
  9276.  
  9277.  
  9278.  
  9279.  
  9280.  
  9281.  
  9282.  
  9283.  
  9284.  
  9285.  
  9286.  
  9287.  
  9288.  
  9289.  
  9290.  
  9291.  
  9292.  
  9293. :?:/razzia::
  9294. Suspend Permit
  9295. If(Abteilung = "" || Abteilung = "ERROR")
  9296. {
  9297. SendChat("/m >> " . Fraktion . ", dies ist eine Razzia! <<")
  9298. }
  9299. else
  9300. {
  9301. SendChat("/m >> " . Abteilung . ", dies ist eine Razzia! <<")
  9302. }
  9303. SendChat("/m >> Nehmen Sie SOFORT die H?de hoch oder wir schie?n! <<")
  9304. return
  9305.  
  9306. :?:/rz::
  9307. Suspend Permit
  9308. if(swatmode == 1)
  9309. {
  9310. SendChat("/m >> S.W.A.T., Dies ist eine Razzia! <<")
  9311. SendChat("/m >> Nehmen Sie SOFORT die H?de hoch oder Sie werden erschossen! (/Hide | /Handsup) <<")
  9312. Sleep, 2000
  9313. SendChat("/m >>5<<")
  9314. Sleep, 1000
  9315. SendChat("/m >>4<<")
  9316. Sleep, 1000
  9317. SendChat("/m >>3<<")
  9318. Sleep, 1000
  9319. SendChat("/m >>2<<")
  9320. Sleep, 1000
  9321. SendChat("/m >>1<<")
  9322. Sleep, 1000
  9323. SendChat("/m >>Letzte Warnung!<<")
  9324. }
  9325. else
  9326. {
  9327. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du bist nicht im SWAT-Modus.")
  9328. }
  9329. return
  9330.  
  9331. :?:/ruhe::
  9332. Suspend Permit
  9333. SendChat("Sie haben das Recht zu schweigen. Alles was Sie sagen, kann und wird vor Gericht gegen Sie verwendet werden.")
  9334. Sleep, 1500
  9335. SendChat("Sie haben das Recht auf einen Anwalt. K?nen Sie sich keinen leisten wird Ihnen einer gestellt.")
  9336. Sleep, 2000
  9337. SendChat("Haben Sie Ihre Rechte verstanden welche ich Ihnen vorgelesen hab?")
  9338. return
  9339.  
  9340. :?:/hdf::
  9341. Suspend Permit
  9342. SendChat("Sein Sie bitte still.")
  9343. return
  9344. :?:/wo::
  9345. Suspend Permit
  9346. SendChat("/d Wo befindet ihr euch und was ist das Problem?")
  9347. return
  9348. :?:/ver::
  9349. Suspend Permit
  9350. if(PoliceID != "X")
  9351. {
  9352. if(text != "-1")
  9353. {
  9354. SendChat("/hq " . text . "")
  9355. }
  9356. }
  9357. else
  9358. {
  9359. SendChat("/hq Habe verstanden.")
  9360. }
  9361. return
  9362. :?:/jver::
  9363. Suspend Permit
  9364. if(PoliceID != "X")
  9365. {
  9366. if(text != "-1")
  9367. {
  9368. SendChat("/j " . text . "")
  9369. }
  9370. }
  9371. else
  9372. {
  9373. SendChat("/j HQ: Habe verstanden.")
  9374. }
  9375. return
  9376. :?:/dver::
  9377. Suspend Permit
  9378. if(PoliceID != "X")
  9379. {
  9380. if(text != "-1")
  9381. {
  9382. SendChat("/d " . text . "")
  9383. }
  9384. }
  9385. else
  9386. {
  9387. SendChat("/d HQ: Habe verstanden.")
  9388. }
  9389. return
  9390.  
  9391. :?:/rver::
  9392. Suspend Permit
  9393. if(PoliceID != "X")
  9394. {
  9395. if(text != "-1")
  9396. {
  9397. SendChat("/r " . text . "")
  9398. }
  9399. }
  9400. else
  9401. SendChat("/f HQ: Habe verstanden.")
  9402. return
  9403. :?:/fver::
  9404. Suspend Permit
  9405. if(PoliceID != "X")
  9406. {
  9407. if(text != "-1")
  9408. {
  9409. SendChat("/f " . text . "")
  9410. }
  9411. }
  9412. else
  9413. SendChat("/f HQ: Habe verstanden.")
  9414. return
  9415. :?:/needbk::
  9416. Suspend Permit
  9417. {
  9418. SendChat("/hq Wird Verst?kung weiterhin ben?igt?")
  9419. }
  9420. return
  9421. :?:/dgo::
  9422. Suspend Permit
  9423. SendChat("/d Einsatzleiter erlaubt Zugriff, GOGOGO!")
  9424. return
  9425. :?:/go::
  9426. Suspend Permit
  9427. SendChat("/hq Einsatzleiter erlaubt Zugriff, GOGOGO!")
  9428. return
  9429. :?:/rgo::
  9430. Suspend Permit
  9431. SendChat("/r Einsatzleiter erlaubt Zugriff, GOGOGO!")
  9432. return
  9433. :?:/fgo::
  9434. Suspend Permit
  9435. SendChat("/f Einsatzleiter erlaubt Zugriff, GOGOGO!")
  9436. return
  9437. :?:/afk::
  9438. Suspend Permit
  9439. Zeit := PlayerInput("Zeit: ")
  9440. SendChat("/f Ich melde mich AFK, Zeit: " Zeit " Minuten")
  9441. return
  9442. :?:/tw::
  9443. Suspend Permit
  9444. SendInput, /take Waffen{space}
  9445. return
  9446. :?:/tws::
  9447. Suspend Permit
  9448. SendInput, /take Waffenschein{space}
  9449. return
  9450. :?:/twl::
  9451. Suspend Permit
  9452. SendInput, /take Waffenschein{space}
  9453. return
  9454. :?:/tfl::
  9455. Suspend Permit
  9456. SendInput, /take Flugschein{space}
  9457. return
  9458. :?:/tfs::
  9459. Suspend Permit
  9460. SendInput, /take Flugschein{space}
  9461. return
  9462. :?:/td::
  9463. Suspend Permit
  9464. SendInput, /take Drogen{space}
  9465. return
  9466. :?:/tm::
  9467. Suspend Permit
  9468. SendInput, /take Materialien{space}
  9469. return
  9470. :?:/tall::
  9471. Suspend Permit
  9472. SendInput, /take Waffen{Space}
  9473. Input, SID, V I M,{Enter}
  9474. Send {Enter}
  9475. SendInput t/take Materialien %SID%{Enter}
  9476. Send {Enter}
  9477. SendInput, t/take Drogen %SID%{enter}
  9478. Suspend Off
  9479. return
  9480. :?:/tst::
  9481. Suspend Permit
  9482. Tid := PlayerInput("Spieler Name / ID: ")
  9483. anzahl := PlayerInput("Anzahl: ")
  9484. SendChat("/licunban " Tid " points " anzahl)
  9485. return
  9486. :?:/clearpoints::
  9487. Suspend Permit
  9488. Tid := PlayerInput("Spieler Name / ID: ")
  9489. anzahl := PlayerInput("Anzahl: ")
  9490. SendChat("/licunban " Tid " points " anzahl)
  9491. return
  9492.  
  9493. ~-::
  9494. if(IsDialogOpen() == 1 || IsChatOpen() == 1)
  9495. {
  9496. return
  9497. }
  9498. id := PlayerInput("/clear ")
  9499.  
  9500. SendChat("/clear " id)
  9501. return
  9502.  
  9503. :?:/op::
  9504. Suspend Permit
  9505. SendInput, /offlinearrest 1{left 2}
  9506. return
  9507. :?:/oa::
  9508. Suspend Permit
  9509. SendInput, /offlinearrest 0{left 2}
  9510. return
  9511. :?:/dp::
  9512. Suspend Permit
  9513. SendInput, /deatharrest 1{left 2}
  9514. return
  9515. :?:/da::
  9516. Suspend Permit
  9517. SendInput, /deatharrest 0{left 2}
  9518. return
  9519. :?:/danke::
  9520. Suspend Permit
  9521. SendChat("Vielen Dank f? ihren Anruf. Sch?en Tag noch.")
  9522. SendChat("/h")
  9523. return
  9524.  
  9525.  
  9526. :?:/stvo::
  9527. Suspend Permit
  9528. anzahl := 0
  9529. rsn := ""
  9530. anzahl := PlayerInput("Anzahl der m?lichen Punkte: ")
  9531. rsn := PlayerInput("Grund: ")
  9532.  
  9533. if(anzahl != 0 && rsn != "")
  9534. {
  9535. ticket := anzahl * 2000
  9536. FormatTime, Uhrzeit,, HH
  9537. if (Uhrzeit >= 12 && Uhrzeit < 20)
  9538. {
  9539. SendChat("Guten Tag, Sie haben gegen die StVo versto?n.")
  9540. }
  9541. else if (Uhrzeit >= 20 || Uhrzeit == 0)
  9542. {
  9543. SendChat("Guten Abend, Sie haben gegen die StVo versto?n.")
  9544. }
  9545. else if (Uhrzeit >= 1 && Uhrzeit < 12)
  9546. {
  9547. SendChat("Guten Morgen, Sie haben gegen die StVo versto?n.")
  9548. }
  9549. SendChat("Ihre Vergehen: " rsn)
  9550. SendChat("M?hten Sie ein Ticket in H?e von " ticket "$ oder " anzahl " Strafpunkte?")
  9551. Sleep, 1000
  9552. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Benutze nun {FFBF00}/aticket{FFFFFF} oder {FFBF00}/apunkte{FFFFFF}, um ein Ticket oder Punkte auszustellen.")
  9553. }
  9554. return
  9555. :?:/aticket::
  9556. Suspend Permit
  9557. if(rsn != "" && ticket != "")
  9558. {
  9559. ID := PlayerInput("ID / Name des Spielers: ")
  9560. SendChat("/ticket " . ID . " " . ticket . " " . rsn . "")
  9561. anzahl := 0
  9562. rsn := ""
  9563. ticket := ""
  9564. }
  9565. else
  9566. {
  9567. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Nutze vorher {3ADF00}/stvo{FFFFFF}, bevor du ein Ticket ausstellst.")
  9568. }
  9569. return
  9570.  
  9571. :?:/apunkte::
  9572. Suspend Permit
  9573. if(rsn != "" && anzahl != "")
  9574. {
  9575. ID := PlayerInput("ID / Name des Spielers: ")
  9576. SendChat("/punkte " . ID . " " . anzahl . " " . rsn . "")
  9577. anzahl := 0
  9578. rsn := ""
  9579. ticket := ""
  9580. }
  9581. else
  9582. {
  9583. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Nutze vorher {3ADF00}/stvo{FFFFFF}, bevor du Strafpunkte ausstellst.")
  9584. }
  9585. return
  9586. :?:/tot::
  9587. Suspend Permit
  9588. SendChat("/l M?hten Sie nun ein Ticket oder die Strafpunkte?")
  9589. return
  9590. :?:/top::
  9591. Suspend Permit
  9592. SendChat("/l M?hten Sie nun ein Ticket oder die Strafpunkte?")
  9593. return
  9594. :?:/fahrt::
  9595. Suspend Permit
  9596. SendChat("/l Ich w?sche Ihnen eine gute Weiterfahrt. Auf Wiedersehen.")
  9597. return
  9598. LWin::
  9599. SendChat("/wanted")
  9600. return
  9601. LWin & 1::
  9602. SendChat("/wanted ls")
  9603. return
  9604. LWin & 2::
  9605. SendChat("/wanted sf")
  9606. return
  9607. LWin & 3::
  9608. SendChat("/wanted lv")
  9609. return
  9610. :?:/cd::
  9611. Suspend Permit
  9612. SendChat("Es folgt ein Countdown, sollten Sie sich weigern, erschie?n wir Sie!")
  9613. Sleep 1500
  9614. SendChat(">>5<<")
  9615. KeyWait, <, D T1
  9616. If !ErrorLevel
  9617. {
  9618. return
  9619. }
  9620. SendChat(">>4<<")
  9621. KeyWait, <, D T1
  9622. If !ErrorLevel
  9623. {
  9624. return
  9625. }
  9626. SendChat(">>3<<")
  9627. KeyWait, <, D T1
  9628. If !ErrorLevel
  9629. {
  9630. return
  9631. }
  9632. SendChat(">>2<<")
  9633. KeyWait, <, D T1
  9634. If !ErrorLevel
  9635. {
  9636. return
  9637. }
  9638. SendChat(">>1<<")
  9639. KeyWait, <, D T1
  9640. If !ErrorLevel
  9641. {
  9642. return
  9643. }
  9644. SendChat("Letzte Warnung!")
  9645. Sleep, 2000
  9646. AddChatMessage(0xFFFFFF,"Freigegeben")
  9647. return
  9648. End::
  9649. AddChatMessage(0xFFFFFF, "Um den Countdown zu stoppen '<' verwenden")
  9650. SendChat("Es folgt ein Countdown, sollten Sie sich weigern, erschie?n wir Sie!")
  9651. Sleep 1500
  9652. SendChat(">>5<<")
  9653. KeyWait, <, D T1
  9654. If !ErrorLevel
  9655. {
  9656. return
  9657. }
  9658. SendChat(">>4<<")
  9659. KeyWait, <, D T1
  9660. If !ErrorLevel
  9661. {
  9662. return
  9663. }
  9664. SendChat(">>3<<")
  9665. KeyWait, <, D T1
  9666. If !ErrorLevel
  9667. {
  9668. return
  9669. }
  9670. SendChat(">>2<<")
  9671. KeyWait, <, D T1
  9672. If !ErrorLevel
  9673. {
  9674. return
  9675. }
  9676. SendChat(">>1<<")
  9677. KeyWait, <, D T1
  9678. If !ErrorLevel
  9679. {
  9680. return
  9681. }
  9682. SendChat("Letzte Warnung!")
  9683. Sleep, 2000
  9684. AddChatMessage(0xFFFFFF,"Freigegeben")
  9685. return
  9686. !End::
  9687. SendChat("Sie haben nun folgende M?lichkeiten:")
  9688. Sleep 1000
  9689. SendChat("1. Sie versuchen zu fl?hten, erhalten Wanteds und wir wenden Gewalt an.")
  9690. Sleep 1000
  9691. SendChat("2. Sie stellen sich und k?nen einen Anwalt beauftragen.")
  9692. Sleep 1000
  9693. SendChat("3. Sie verweigern, erhalten Wanteds und wir wenden Gewalt an.")
  9694. Sleep 1000
  9695. SendChat("Sie haben die Wahl!")
  9696. return
  9697. !c::
  9698. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  9699. {
  9700. return
  9701. }
  9702. zoll := PlayerInput("Zoll schlie?n lassen - Zoll-ID: ")
  9703. if(zoll != "" && zoll != " ")
  9704. {
  9705. SendChat("/hq Erbitte Schlie?ng von Zollstation " zoll ".")
  9706. }
  9707. return
  9708.  
  9709. NumpadDiv::
  9710. SendInput, t/zollcontrol zu{left}{left}{left}
  9711. return
  9712.  
  9713. !NumpadDiv::
  9714. SendInput, t/zollcontrol auf{left}{left}{left}{left}
  9715. return
  9716.  
  9717. NumpadMult::
  9718. SendInput, t/gov Die Zollstationen sind zurzeit geschlossen.{left 26}
  9719. return
  9720.  
  9721. !NumpadMult::
  9722. SendInput, t/gov Die Zollstationen sind nicht mehr geschlossen.{left 29}
  9723. return
  9724.  
  9725. NumpadSub::
  9726. SendChat("/auf")
  9727. return
  9728.  
  9729. !NumpadSub::
  9730. SendChat("/zoll")
  9731. return
  9732.  
  9733. NumpadAdd::
  9734. If (IsChatOpen() == 1 || IsDialogOpen() == 1)
  9735. {
  9736. SendInput, {%A_ThisHotkey%}
  9737. return
  9738. }
  9739. if(bkon == 0)
  9740. {
  9741. SendChat("/bk")
  9742. bkon := 1
  9743. }
  9744. else if(bkon == 1)
  9745. {
  9746. GetCityName(city)
  9747. GetZoneName(zone)
  9748. If (city == "" || city == "Unbekannt")
  9749. {
  9750. SendChat("/hq Ich ben?ige DRINGEND Verst?kung in " zone ".")
  9751. }
  9752. else
  9753. {
  9754. SendChat("/hq Ich ben?ige DRINGEND Verst?kung in " zone ", " city ".")
  9755. }
  9756. }
  9757. return
  9758.  
  9759. !NumpadAdd::
  9760. if(PoliceID != "X")
  9761. {
  9762. if(bkon == 1)
  9763. {
  9764. SendChat("/bk")
  9765. bkon := 0
  9766. }
  9767. }
  9768. else
  9769. {
  9770. SendChat("/hq Verst?kung wird NICHT mehr ben?igt!")
  9771. if(bkon == 1)
  9772. {
  9773. SendChat("/bk")
  9774. bkon := 0
  9775. }
  9776. }
  9777. return
  9778. Pause::
  9779. suspend
  9780. if ( A_IsSuspended )
  9781. {
  9782. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast den Keybinder {FF0000}pausiert{FF0000}.")
  9783. SetTimer, _GtaCheck, off
  9784. }
  9785. if ( !A_IsSuspended )
  9786. {
  9787. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast den Keybinder {00FF00}aktiviert{00FF00}.")
  9788. SetTimer, _GtaCheck, 1000
  9789. }
  9790. return
  9791. F1::
  9792. SendChat("/tog")
  9793. Sleep, 200
  9794. SendInput {enter}
  9795. return
  9796. F3::
  9797. SendChat("/erstehilfe")
  9798. return
  9799. F4::
  9800. SendChat("/ausruesten " . Profil1_1 . " " . Profil1_2 . " " . Profil1_3 . " " . Profil1_4 . " " . Profil1_5 . " " . Profil1_6 . " " . Profil1_7 . "")
  9801. Sleep, 1000
  9802. SendChat("/heal")
  9803. return
  9804.  
  9805. F5::
  9806. SendChat("/ausruesten " . Profil2_1 . " " . Profil2_2 . " " . Profil2_3 . " " . Profil2_4 . " " . Profil2_5 . " " . Profil2_6 . " " . Profil2_7 . "")
  9807. Sleep, 1000
  9808. SendChat("/heal")
  9809. return
  9810.  
  9811. F6::
  9812. SendChat("/ausruesten " . Profil3_1 . " " . Profil3_2 . " " . Profil3_3 . " " . Profil3_4 . " " . Profil3_5 . " " . Profil3_6 . " " . Profil3_7 . "")
  9813. Sleep, 1000
  9814. If(Schutzweste == 1)
  9815. {
  9816. SendChat("/undercover " UCSkin "")
  9817. Sleep, 200
  9818. SendChat("/heal")
  9819. }
  9820. else
  9821. {
  9822. SendChat("/heal")
  9823. Sleep, 200
  9824. SendChat("/undercover " UCSkin "")
  9825. }
  9826. return
  9827. !F4::
  9828. SendChat("/ausruesten")
  9829. Sleep 1200
  9830. SendInput, {enter}{enter}
  9831. return
  9832. ^F4::
  9833. SendChat("/heal")
  9834. return
  9835. ~0::
  9836. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  9837. {
  9838. SendInput, {A_ThisHotkey}
  9839. return
  9840. }
  9841. id := PlayerInput("Vehicle-ID: ")
  9842. SendChat("/carinfo " id)
  9843. return
  9844. :?:/stvo1::
  9845. Suspend Permit
  9846. SendChat("Guten Tag, Sie haben gegen die StVO versto?n. Sie haben die Wahl zwischen folgenden Konsequenzen:")
  9847. SendChat("Entweder bezahlen Sie ein Ticket in H?e von 2.000$, oder Ihnen wird 1 Strafpunkt eingetragen.")
  9848. return
  9849. :?:/stvo2::
  9850. Suspend Permit
  9851. SendChat("Guten Tag, Sie haben gegen die StVO versto?n. Sie haben die Wahl zwischen folgenden Konsequenzen:")
  9852. SendChat("Entweder bezahlen Sie ein Ticket in H?e von 4.000$, oder Ihnen werden 2 Strafpunkte eingetragen.")
  9853. return
  9854. :?:/stvo3::
  9855. Suspend Permit
  9856. SendChat("Guten Tag, Sie haben gegen die StVO versto?n. Sie haben die Wahl zwischen folgenden Konsequenzen:")
  9857. SendChat("Entweder bezahlen Sie ein Ticket in H?e von 6.000$, oder Ihnen werden 3 Strafpunkte eingetragen.")
  9858. return
  9859. :?:/stvo4::
  9860. Suspend Permit
  9861. SendChat("Guten Tag, Sie haben gegen die StVO versto?n. Sie haben die Wahl zwischen folgenden Konsequenzen:")
  9862. SendChat("Entweder bezahlen Sie ein Ticket in H?e von 8.000$, oder Ihnen werden 4 Strafpunkte eingetragen.")
  9863. return
  9864. :?:/stvo5::
  9865. Suspend Permit
  9866. SendChat("Guten Tag, Sie haben gegen die StVO versto?n. Sie haben die Wahl zwischen folgenden Konsequenzen:")
  9867. SendChat("Entweder bezahlen Sie ein Ticket in H?e von 10.000$, oder Ihnen werden 5 Strafpunkte eingetragen.")
  9868. return
  9869. :?:/stvof::
  9870. Suspend Permit
  9871. SendChat("Guten Tag, Sie haben mit Ihrem Flugobjekt gegen die StVO versto?n. Sie haben folgende M?lichkeiten:")
  9872. SendChat("Entweder bezahlen Sie ein Ticket in H?e von 10.000$, oder Ihr Flugschein wird beschlagnahmt.")
  9873. return
  9874. :?:/stvow::
  9875. Suspend Permit
  9876. SendChat("Guten Tag, Sie wurden zum Waffenschein Take. Sie haben folgende M?lichkeiten:")
  9877. SendChat("Entweder bezahlen Sie ein Ticket in H?e von 14.000$, oder Ihr Waffenschein wird beschlagnahmt.")
  9878. return
  9879. :?:/rb::
  9880. Suspend Permit
  9881. SendChat("/roadblock create")
  9882. return
  9883.  
  9884. :?:/db::
  9885. Suspend Permit
  9886. SendChat("/roadblock delete")
  9887. return
  9888. :?:/dba::
  9889. Suspend Permit
  9890. SendChat("/roadblock deleteall")
  9891. return
  9892. :?:/user::
  9893. Suspend Permit
  9894. UserData := ""
  9895. UserName := PlayerInput("User-Name: ")
  9896. If(UserName!="")
  9897. {
  9898. }
  9899. UserUrl = http://cp.rpg-city.de/api.php?type=level|job|fraction|rank|online|playtime|org|number|money|bank|deposit|kills|deaths|premium|skin&player=%UserName%
  9900. UserData := URLDownloadToVar(UserUrl)
  9901. if(UserData == "Der Spieler existiert nicht.")
  9902. {
  9903. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Der Spieler existiert nicht.")
  9904. return
  9905. }
  9906. If(UserData!="Des Spielers Profil ist privat.")
  9907. {
  9908. RegExMatch(UserData, "level:(.+)\|j", UserLevel)
  9909. RegExMatch(UserData, ".+\|job:(.+)\|f", UserJob)
  9910. RegExMatch(UserData, ".+\|fraction:(.+)\|r", UserFraction)
  9911. RegExMatch(UserData, ".+\|rank:(.+)\|online", UserRank)
  9912. RegExMatch(UserData, ".+\|online:(.)\|play", UserOnline)
  9913. RegExMatch(UserData, ".+\|playtime:(.+)\|o", UserPlaytime)
  9914. RegExMatch(UserData, ".+\|org:(.+)\|n", UserOrg)
  9915. RegExMatch(UserData, ".+\|number:(.+)\|m", UserNumber)
  9916. RegExMatch(UserData, ".+\|money:(.+)\|b", UserMoney)
  9917. RegExMatch(UserData, ".+\|bank:(.+)\|dep", UserBank)
  9918. RegExMatch(UserData, ".+\|deposit:(.+)\|k", UserDeposit)
  9919. RegExMatch(UserData, ".+\|kills:(.+)\|d", UserKills)
  9920. RegExMatch(UserData, ".+\|deaths:(.+)\|p", UserDeaths)
  9921. RegExMatch(UserData, ".+\|premium:(.)", UserPremium)
  9922. Gesamt +=UserBank1
  9923. Gesamt += UserMoney1
  9924. Gesamt += UserDeposit1
  9925. KD := Userkills1 / UserDeaths1
  9926. KD := Round(KD, 3)
  9927. if(UserPremium1 == 1)
  9928. {
  9929. ShowDialog(0, "Infos ?er " . UserName . ""," Level: " . UserLevel1 . " `n Spielzeit: " . UserPlaytime1 . " `n Nummer: " . UserNumber1 . " `n `n Fraktion: " . UserFraction1 . " Rank: " . UserRank1 . " `n Job: " . UserJob1 . " `n Organisation: " . UserOrg1 . " `n `n Bargeld: " . UserMoney1 . "$ `n Konto: " . UserBank1 . "$ `n Festgeld: " . UserDeposit1 . "$ `n Gesamt: " . Gesamt . "$ `n `n Kills: " . UserKills1 . " `n Tode: " . UserDeaths1 . " `n K/D: " . KD . " `n `n {FF6600} Premium ", "Verlassen")
  9930. }
  9931. else if(UserPremium1 == 2)
  9932. {
  9933. ShowDialog(0, "Infos ?er " . UserName . ""," Level: " . UserLevel1 . " `n Spielzeit: " . UserPlaytime1 . " `n Nummer: " . UserNumber1 . " `n `n Fraktion: " . UserFraction1 . " Rank: " . UserRank1 . " `n Job: " . UserJob1 . " `n Organisation: " . UserOrg1 . " `n `n Bargeld: " . UserMoney1 . "$ `n Konto: " . UserBank1 . "$ `n Festgeld: " . UserDeposit1 . "$ `n Gesamt: " . Gesamt . "$ `n `n Kills: " . UserKills1 . " `n Tode: " . UserDeaths1 . " `n K/D: " . KD . " `n `n {FF6600} VIP ", "Verlassen")
  9934. }
  9935. else
  9936. {
  9937. ShowDialog(0, "Infos ?er " . UserName . ""," Level: " . UserLevel1 . " `n Spielzeit: " . UserPlaytime1 . " `n Nummer: " . UserNumber1 . " `n `n Fraktion: " . UserFraction1 . " Rank: " . UserRank1 . " `n Job: " . UserJob1 . " `n Organisation: " . UserOrg1 . " `n `n Bargeld: " . UserMoney1 . "$ `n Konto: " . UserBank1 . "$ `n Festgeld: " . UserDeposit1 . "$ `n Gesamt: " . Gesamt . "$ `n `n Kills: " . UserKills1 . " `n Tode: " . UserDeaths1 . " `n K/D: " . KD . " `n ", "Verlassen")
  9938. }
  9939. }
  9940.  
  9941. {
  9942. }
  9943. return
  9944. :?:/RPMODE::
  9945. Suspend Permit
  9946. if(watermode == 0)
  9947. {
  9948. watermode := 1
  9949. swatmode := 0
  9950. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Wassermodus {33CC00}eingeschaltet")
  9951. }
  9952. else if(watermode == 1)
  9953. {
  9954. watermode := 0
  9955. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Wassermodus {33CC00}ausgeschaltet")
  9956. }
  9957. return
  9958.  
  9959.  
  9960.  
  9961. :?:/swat::
  9962. Suspend Permit
  9963. if ( A_IsSuspended )
  9964. {
  9965. SendChat("/swat")
  9966. }
  9967. else
  9968. {
  9969. if(IsPlayerInRangeOfPoint(225.6339,121.3084,999.0673,2.2) || IsPlayerInRangeOfPoint(255.3859,77.3740,1003.6406, 1.2))
  9970. {
  9971. if(swatmode == 0)
  9972. {
  9973. swatmode := 1
  9974. watermode := 0
  9975. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} S.W.A.T Modus {33CC00}eingeschaltet")
  9976. }
  9977. else
  9978. {
  9979. swatmode := 0
  9980. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} S.W.A.T Modus {FF0000}ausgeschaltet")
  9981. }
  9982. SendChat("/swat")
  9983. }
  9984. else
  9985. {
  9986. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du kannst den S.W.A.T Modus hier nicht (de-)aktivieren.")
  9987. }
  9988. }
  9989. return
  9990.  
  9991. !^0::
  9992. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  9993. {
  9994. return
  9995. }
  9996. if(watermode == 1)
  9997. {
  9998. SendChat("/m >> K?tenwache, bitte folgen Sie dem Boot <<")
  9999. }
  10000. else if(swatmode == 1)
  10001. {
  10002. SendChat("/m >> SWAT, " . Swatabteilung . ": bitte folgen Sie dem Einsatzfahrzeug <<")
  10003. }
  10004. else
  10005. {
  10006. If(Abteilung = "" || Abteilung = "ERROR")
  10007. {
  10008. SendChat("/m >> " . Fraktion . ", bitte folgen Sie dem Polizeiwagen <<")
  10009. }
  10010. else
  10011. {
  10012. SendChat("/m >> " . Abteilung . ", bitte folgen Sie dem Polizeiwagen <<")
  10013. }
  10014. }
  10015. return
  10016. !^1::
  10017. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10018. {
  10019. return
  10020. }
  10021. if(watermode == 1)
  10022. {
  10023. SendChat("/m >> K?tenwache, Wasserverkehrskontrolle. Halten Sie bitte an <<")
  10024. }
  10025. else if(swatmode == 1)
  10026. {
  10027. SendChat("/m >> SWAT, " . Swatabteilung . ": Stra?nverkehrskontrolle. Fahren Sie SOFORT rechts ran <<")
  10028. }
  10029. else
  10030. {
  10031. If(Abteilung = "" || Abteilung = "ERROR")
  10032. {
  10033. SendChat("/m >> " . Fraktion . ", Stra?nverkehrskontrolle. Fahren Sie bitte rechts ran <<")
  10034. }
  10035. else
  10036. {
  10037. SendChat("/m >> " . Abteilung . ", Stra?nverkehrskontrolle. Fahren Sie bitte rechts ran <<")
  10038. }
  10039. }
  10040. return
  10041. !^2::
  10042. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10043. {
  10044. return
  10045. }
  10046. if(watermode == 1)
  10047. {
  10048. SendChat("/m >> K?tenwache, stoppen Sie SOFORT Ihr Boot! <<")
  10049. }
  10050. else if(swatmode == 1)
  10051. {
  10052. SendChat("/m >> SWAT, " . Swatabteilung . ": halten Sie SOFORT an! <<")
  10053. }
  10054. else
  10055. {
  10056. If(Abteilung = "" || Abteilung = "ERROR")
  10057. {
  10058. SendChat("/m >> " . Fraktion . ", halten Sie SOFORT an! <<")
  10059. }
  10060. else
  10061. {
  10062. SendChat("/m >> " . Abteilung . ", halten Sie SOFORT an! <<")
  10063. }
  10064. }
  10065. return
  10066. !^3::
  10067. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10068. {
  10069. return
  10070. }
  10071. SendChat("/m >> Letzte Warnung, bleiben Sie stehen oder wir schie?n! <<")
  10072. return
  10073.  
  10074. !^4::
  10075. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10076. {
  10077. return
  10078. }
  10079. SendChat("/m >> Steigen Sie SOFORT mit erhobenen H?den aus Ihrem Fahrzeug! <<")
  10080. return
  10081.  
  10082. !^5::
  10083. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10084. {
  10085. return
  10086. }
  10087. if(watermode == 1)
  10088. {
  10089. SendChat("/m >> K?tenwache, fahren Sie SOFORT zur Seite! <<")
  10090. }
  10091. else if(swatmode == 1)
  10092. {
  10093. SendChat("/m >> SWAT, " . Swatabteilung . ": r?men Sie SOFORT die Stra?! <<")
  10094. }
  10095. else
  10096. {
  10097. If(Abteilung = "" || Abteilung = "ERROR")
  10098. {
  10099. SendChat("/m >> " . Fraktion . ", r?men Sie SOFORT die Stra?! <<")
  10100. }
  10101. else
  10102. {
  10103. SendChat("/m >> " . Abteilung . ", r?men Sie SOFORT die Stra?! <<")
  10104. }
  10105. }
  10106. return
  10107. !^6::
  10108. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10109. {
  10110. return
  10111. }
  10112. if(swatmode == 1)
  10113. {
  10114. SendChat("/m >> SWAT, " . Swatabteilung . ": Legen Sie SOFORT die Waffen nieder oder wir werden Gewalt anwenden! <<")
  10115. }
  10116. else
  10117. {
  10118. SendChat("/m >> Legen Sie SOFORT die Waffen nieder oder wir werden Gewalt anwenden! <<")
  10119. }
  10120. return
  10121. !^9::
  10122. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10123. {
  10124. return
  10125. }
  10126. SendChat("/m >> Verlassen Sie SOFORT dieses Gel?de! <<")
  10127. return
  10128. ^0::
  10129. id := PlayerInput("Rote Ampel missachtet: ")
  10130. SendChat("/punkte " id " 2 Missachtung roter Ampeln")
  10131. return
  10132.  
  10133. ^1::
  10134. id := PlayerInput("SVG: ")
  10135. SendChat("/punkte " id " 2 Stra?nverkehrsgef?rdung")
  10136. return
  10137.  
  10138. ^2::
  10139. id := PlayerInput("Falsche Seite: ")
  10140. SendChat("/punkte " id " 2 Fahren auf der falschen Stra?nseite")
  10141. return
  10142.  
  10143. ^3::
  10144. id := PlayerInput("Zu schnell: ")
  10145. SendChat("/punkte " id " 2 ?erschreitung der H?hstgeschwindigkeit")
  10146. return
  10147.  
  10148. ^4::
  10149. id := PlayerInput("Vorfahrt: ")
  10150. SendChat("/punkte " id " 2 Missachtung der Vorfahrt")
  10151. return
  10152.  
  10153. ^5::
  10154. id := PlayerInput("Abseits: ")
  10155. SendChat("/punkte " id " 2 Fahren abseits der Stra?")
  10156. return
  10157.  
  10158. ^6::
  10159. id := PlayerInput("Ohne Licht: ")
  10160. SendChat("/punkte " id " 1 Fahren ohne Licht")
  10161. return
  10162.  
  10163. ^7::
  10164. GetZoneName(MyZone)
  10165. id := PlayerInput("Parkverbot: ")
  10166. SendChat("/punkte " id " 1 Parken im Parkverbot [" . MyZone . "]")
  10167. return
  10168.  
  10169. ^8::
  10170. id := PlayerInput("SVB: ")
  10171. SendChat("/punkte " id " 2 Stra?nverkehrsbehinderung")
  10172. return
  10173.  
  10174. ^9::
  10175. id := PlayerInput("Alkoholeinfluss: ")
  10176. SendChat("/punkte " id " 4 Fahren unter Alkohol-/Drogeneinfluss")
  10177. return
  10178.  
  10179. !^7::
  10180. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  10181. {
  10182. return
  10183. }
  10184. Suspend On
  10185. SendInput, t/cuff{Space}
  10186. Input, SID, V I M,{Enter}
  10187. Send {Enter}
  10188. SendInput t/frisk %SID%{Enter}
  10189. Suspend Off
  10190.  
  10191. if(arrest1 == -1)
  10192. {
  10193. arrest1 := SID
  10194. return
  10195. }
  10196. else if(arrest2 == -1)
  10197. {
  10198. arrest2 := SID
  10199. return
  10200. }
  10201. else if(arrest3 == -1)
  10202. {
  10203. arrest3 := SID
  10204. return
  10205. }
  10206. else if(arrest4 == -1)
  10207. {
  10208. arrest4 := SID
  10209. return
  10210. }
  10211. else if(arrest5 == -1)
  10212. {
  10213. arrest5 := SID
  10214. return
  10215. }
  10216. else
  10217. {
  10218. AddChatMessage(0x4B45F, "|AddChatMessage(0x4B45F, |Atano-Binder|{FFFFFF} Alle Arrestslots belegt, dieser Spieler wird nicht automatisch arrestet.(F9 zum Resetten)")
  10219. return
  10220. }
  10221.  
  10222.  
  10223.  
  10224. :?:/tasks::
  10225. Suspend Permit
  10226. IniRead, Passwort, settings.ini, Sonstiges, Passwort
  10227. url = http://ni31914_3.vweb16.nitrado.net/keybinder/tasks/pdapi.php?action=get
  10228. tasks := UrlDownloadToVar(url)
  10229.  
  10230. if(tasks == "ERROR_BAD_LINK")
  10231. {
  10232. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fehlerhafte Parameter angegeben.")
  10233. }
  10234. else if(tasks == "ERROR_ACCESS_DENIED")
  10235. {
  10236. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Zugriff verweigert, das Passwort ist {FF0000}falsch!")
  10237. }
  10238. else
  10239. {
  10240. AnzahlTasks := 0
  10241. Loop, Parse, tasks, '
  10242. {
  10243. AnzahlTasks++
  10244. }
  10245. AnzahlSeiten := Ceil(AnzahlTasks / 10)
  10246. TaskID := 0
  10247. Seite := 0
  10248. ausstehendeAufgaben := "{FFBB00}ID Zeitpunkt {FF4040}Betreffende Person {00F0CC}Aufgabe {99CC00}Auftraggeber`n"
  10249. Loop, Parse, tasks, '
  10250. {
  10251. aufgabe := ""
  10252. aufgabe_ := ""
  10253. RegExMatch(A_LoopField, "(.*)~(.*)~(.*)~(.*)~(.*)", aufgabe_)
  10254. id := GetPlayerIDByName(aufgabe_3)
  10255. if(id != -1 && id != 65535)
  10256. {
  10257. ausstehendeAufgaben .= "`n{FFBB00}" aufgabe_1 "{FFFFFF} - {FFBB00}" aufgabe_2 "{FFFFFF} - {33CC00}" aufgabe_3 "{FFFFFF} - {00F0CC}" aufgabe_4 "{FFFFFF} - {99CC00}" aufgabe_5 "{FFFFFF}"
  10258. }
  10259. else
  10260. {
  10261. ausstehendeAufgaben .= "`n{FFBB00}" aufgabe_1 "{FFFFFF} - {FFBB00}" aufgabe_2 "{FFFFFF} - {FF4040}" aufgabe_3 "{FFFFFF} - {00F0CC}" aufgabe_4 "{FFFFFF} - {99CC00}" aufgabe_5 "{FFFFFF}"
  10262. }
  10263. TaskID++
  10264.  
  10265. if(TaskID == 10)
  10266. {
  10267. ShowDialog(0, "Ausstehende Aufgaben", ausstehendeAufgaben, "Weiter >>")
  10268. ausstehendeAufgaben := "{FFBB00}ID Zeitpunkt {FF4040}Betreffende Person {00F0CC}Aufgabe {99CC00}Auftraggeber`n"
  10269. TaskID := 0
  10270. Seite++
  10271. Sleep, 500
  10272. Loop
  10273. {
  10274. if(IsChatOpen() || IsDialogOpen())
  10275. continue
  10276. else
  10277. break
  10278. }
  10279. }
  10280. }
  10281. ShowDialog(0, "Ausstehende Aufgaben", ausstehendeAufgaben, "Ok")
  10282. }
  10283. return
  10284. :?:/addtask::
  10285. Suspend Permit
  10286. betreffendePerson := PlayerInput("Betreffende Person: ")
  10287. if(betreffendePerson == "" || betreffendePerson == " ")
  10288. {
  10289. return
  10290. }
  10291. Aufgabe := PlayerInput("Aufgabe: ")
  10292. if(Aufgabe == "" || Aufgabe == " ")
  10293. {
  10294. return
  10295. }
  10296. GetPlayerName(auftraggeber)
  10297. IniRead, Passwort, settings.ini, Sonstiges, Passwort
  10298. url = http://ni31914_3.vweb16.nitrado.net/keybinder/tasks/pdapi.php?action=add&task=%Aufgabe%&person=%betreffendePerson%&auftraggeber=%auftraggeber%&password=%Passwort%
  10299. success := UrlDownloadToVar(url)
  10300.  
  10301. if(success == "QUERY_SUCCESSFUL_EXECUTED")
  10302. {
  10303. SendChat("/hq ~ Neue Aufgabe ist verf?bar: Betreffende Person: " betreffendePerson ", Aufgabe: " Aufgabe " ~")
  10304. }
  10305. else if(success == "ERROR_BAD_LINK")
  10306. {
  10307. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fehlerhafte Parameter angegeben.")
  10308. }
  10309. else if(success == "ERROR_BAD_QUERY")
  10310. {
  10311. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Die Query konnte nicht an den MySQL Server gesendet werden.")
  10312. }
  10313. else if(success == "ERROR_ACCESS_DENIED")
  10314. {
  10315. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Zugriff verweigert, das Passwort ist falsch.")
  10316. }
  10317. else
  10318. {
  10319. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Unbekannter Fehler.")
  10320. }
  10321. return
  10322. :?:/deletetask::
  10323. Suspend Permit
  10324. AufgabenID := PlayerInput("ID der Aufgabe: ")
  10325. if(AufgabenID == "" || AufgabenID == " ")
  10326. {
  10327. return
  10328. }
  10329. IniRead, Passwort, settings.ini, Sonstiges, Passwort
  10330. url = http://www.rpg-ausbildung.de/keybinder/tasks/pdapi.php?action=delete&id=%AufgabenID%&password=%Passwort%
  10331. success := UrlDownloadToVar(url)
  10332.  
  10333. if(success == "QUERY_SUCCESSFUL_EXECUTED")
  10334. {
  10335. SendChat("/hq ~ Aufgabe " AufgabenID " wurde bearbeitet, der Eintrag wurde gel?cht ~")
  10336. }
  10337. else if(success == "ERROR_BAD_LINK")
  10338. {
  10339. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Fehlerhafte Parameter angegeben.")
  10340. }
  10341. else if(success == "ERROR_BAD_QUERY")
  10342. {
  10343. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Die Query konnte nicht an den MySQL Server gesendet werden.")
  10344. }
  10345. else if(success == "ERROR_ACCESS_DENIED")
  10346. {
  10347. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Zugriff verweigert, das Passwort ist falsch.")
  10348. }
  10349. else
  10350. {
  10351. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Unbekannter Fehler.")
  10352. }
  10353. return
  10354.  
  10355.  
  10356. :?:/hm::
  10357. Suspend Permit
  10358.  
  10359. hitmen := ""
  10360. hmcounter := 0
  10361.  
  10362. url = http://www.rpg-ausbildung.de/keybinder/Hitmen/getalldata.php
  10363. hm := UrlDownloadToVar(url)
  10364. Loop, Parse, hm, '
  10365. {
  10366. id := GetPlayerIdByName(A_LoopField)
  10367. if(id != -1 && id != 65535)
  10368. {
  10369. hitmen .= "`n{66CC00}" A_LoopField
  10370. hmcounter ++
  10371. }
  10372. else
  10373. {
  10374. hitmen .= "`n{FF0000}" A_LoopField
  10375. }
  10376. }
  10377. hitmen .= "`n`n{FFFFFF}::.Legende.::`n{66CC00}Gr?: Online`n{FF0000}Rot: Offline"
  10378. title := "Hitmen online (" hmcounter ")"
  10379. ShowDialog(0,title,hitmen,"OK")
  10380. return
  10381.  
  10382.  
  10383. :?:/auto::
  10384. Suspend Permit
  10385. Fahrzeug := PlayerInput("Model-ID oder Fahrzeugname: ")
  10386. Sleep, 100
  10387.  
  10388. car_id := ""
  10389. car_name := ""
  10390. car_preis := ""
  10391. car_autohaus := ""
  10392. car_kaution := ""
  10393. car_tank := ""
  10394. car_verbrauch := ""
  10395. car_geschwindigkeit := ""
  10396. car_level := ""
  10397. car_tuningwerkstatt := ""
  10398.  
  10399. if(Fahrzeug == 571 || Fahrzeug = "Kart")
  10400. {
  10401. car_id := 571
  10402. car_name := "Kart"
  10403. car_preis := "/"
  10404. car_autohaus := "/"
  10405. car_kaution := "12.000$"
  10406. car_tank := "12 Liter"
  10407. car_verbrauch := "4.5"
  10408. car_geschwindigkeit := "72 km/h"
  10409. car_level := "1"
  10410. car_tuningwerkstatt := "Zweiradtuning"
  10411. }
  10412. else if(Fahrzeug == 487 || Fahrzeug = "Maverick")
  10413. {
  10414. car_id := 487
  10415. car_name := "Maverick"
  10416. car_preis := "750.000$"
  10417. car_autohaus := "Airport LS"
  10418. car_kaution := "/"
  10419. car_tank := "120 Liter"
  10420. car_verbrauch := "35.0"
  10421. car_geschwindigkeit := "135 km/h"
  10422. car_level := "12"
  10423. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10424. }
  10425. else if(Fahrzeug == 593 || Fahrzeug = "Dodo")
  10426. {
  10427. car_id := 593
  10428. car_name := "Dodo"
  10429. car_preis := "150.000$"
  10430. car_autohaus := "Airport LS"
  10431. car_kaution := "/"
  10432. car_tank := "80 Liter"
  10433. car_verbrauch := "24.8"
  10434. car_geschwindigkeit := "120 km/h"
  10435. car_level := "6"
  10436. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10437. }
  10438. else if(Fahrzeug == 519 || Fahrzeug = "Shamal")
  10439. {
  10440. car_id := 519
  10441. car_name := "Shamal"
  10442. car_preis := "3.000.000$"
  10443. car_autohaus := "Airport LS"
  10444. car_kaution := "/"
  10445. car_tank := "3000 Liter"
  10446. car_verbrauch := "450.0"
  10447. car_geschwindigkeit := "210 km/h"
  10448. car_level := "12"
  10449. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10450. }
  10451. else if(Fahrzeug == 461 || Fahrzeug = "PCJ-600" || Fahrzeug = "PCJ600" || Fahrzeug = "PCJ")
  10452. {
  10453. car_id := 461
  10454. car_name := "PCJ-600"
  10455. car_preis := "12.000$"
  10456. car_autohaus := "Coutt and Schutz"
  10457. car_kaution := "/"
  10458. car_tank := "30 Liter"
  10459. car_verbrauch := "11.6"
  10460. car_geschwindigkeit := "125 km/h"
  10461. car_level := "1"
  10462. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10463. }
  10464. else if(Fahrzeug == 462 || Fahrzeug = "Faggio")
  10465. {
  10466. car_id := 462
  10467. car_name := "Faggio"
  10468. car_preis := "3.000$"
  10469. car_autohaus := "Coutt and Schutz"
  10470. car_kaution := "/"
  10471. car_tank := "15 Liter"
  10472. car_verbrauch := "7.5"
  10473. car_geschwindigkeit := "86 km/h"
  10474. car_level := "1"
  10475. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10476. }
  10477. else if(Fahrzeug == 463 || Fahrzeug = "Freeway")
  10478. {
  10479. car_id := 463
  10480. car_name := "Freeway"
  10481. car_preis := "22.000$"
  10482. car_autohaus := "Coutt and Schutz"
  10483. car_kaution := "/"
  10484. car_tank := "30 Liter"
  10485. car_verbrauch := "11.3"
  10486. car_geschwindigkeit := "111 km/h"
  10487. car_level := "1"
  10488. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10489. }
  10490. else if(Fahrzeug == 468 || Fahrzeug = "Sanchez")
  10491. {
  10492. car_id := 468
  10493. car_name := "Sanchez"
  10494. car_preis := "16.000$"
  10495. car_autohaus := "Coutt and Schutz"
  10496. car_kaution := "/"
  10497. car_tank := "30 Liter"
  10498. car_verbrauch := "10.8"
  10499. car_geschwindigkeit := "111 km/h"
  10500. car_level := "1"
  10501. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10502. }
  10503. else if(Fahrzeug == 586 || Fahrzeug = "Wayfarer")
  10504. {
  10505. car_id := 586
  10506. car_name := "Wayfarer"
  10507. car_preis := "10.000$"
  10508. car_autohaus := "Coutt and Schutz"
  10509. car_kaution := "/"
  10510. car_tank := "30 Liter"
  10511. car_verbrauch := "9.8"
  10512. car_geschwindigkeit := "111 km/h"
  10513. car_level := "1"
  10514. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10515. }
  10516. else if(Fahrzeug == 581 || Fahrzeug = "BF-400" || Fahrzeug = "BF" || Fahrzeug = "BF 400" || Fahrzeug = "BF400")
  10517. {
  10518. car_id := 581
  10519. car_name := "BF-400"
  10520. car_preis := "14.000$"
  10521. car_autohaus := "Coutt and Schutz"
  10522. car_kaution := "/"
  10523. car_tank := "30 Liter"
  10524. car_verbrauch := "10.0"
  10525. car_geschwindigkeit := "117 km/h"
  10526. car_level := "1"
  10527. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10528. }
  10529. else if(Fahrzeug == 522 || Fahrzeug = "NRG-500" || Fahrzeug = "NRG" || Fahrzeug = "NRG 500" || Fahrzeug = "NRG500")
  10530. {
  10531. car_id := 522
  10532. car_name := "NRG-500"
  10533. car_preis := "50.000$"
  10534. car_autohaus := "Coutt and Schutz"
  10535. car_kaution := "/"
  10536. car_tank := "30 Liter"
  10537. car_verbrauch := "21.1"
  10538. car_geschwindigkeit := "136 km/h"
  10539. car_level := "1"
  10540. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10541. }
  10542. else if(Fahrzeug == 481 || Fahrzeug = "BMX")
  10543. {
  10544. car_id := 481
  10545. car_name := "BMX"
  10546. car_preis := "1.000$"
  10547. car_autohaus := "Coutt and Schutz"
  10548. car_kaution := "/"
  10549. car_tank := "3 Liter"
  10550. car_verbrauch := "0.0"
  10551. car_geschwindigkeit := "74 km/h"
  10552. car_level := "1"
  10553. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10554. }
  10555. else if(Fahrzeug == 521 || Fahrzeug = "FCR-900" || Fahrzeug = "FCR" || Fahrzeug = "FCR900" || Fahrzeug = "FCR 900")
  10556. {
  10557. car_id := 521
  10558. car_name := "FCR-900"
  10559. car_preis := "14.000$"
  10560. car_autohaus := "Coutt and Schutz"
  10561. car_kaution := "/"
  10562. car_tank := "30 Liter"
  10563. car_verbrauch := "14.1"
  10564. car_geschwindigkeit := "125 km/h"
  10565. car_level := "1"
  10566. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10567. }
  10568. else if(Fahrzeug == 506 || Fahrzeug = "Super GT" || Fahrzeug = "SuperGT")
  10569. {
  10570. car_id := 506
  10571. car_name := "Super GT"
  10572. car_preis := "250.000$"
  10573. car_autohaus := "Grottis"
  10574. car_kaution := "7.0000$"
  10575. car_tank := "40 Liter"
  10576. car_verbrauch := "17.8"
  10577. car_geschwindigkeit := "139 km/h"
  10578. car_level := "1"
  10579. car_tuningwerkstatt := "Transfender"
  10580. }
  10581. else if(Fahrzeug == 560 || Fahrzeug = "Sultan")
  10582. {
  10583. car_id := 560
  10584. car_name := "Sultan"
  10585. car_preis := "85.000$"
  10586. car_autohaus := "Grottis"
  10587. car_kaution := "5.0000$"
  10588. car_tank := "50 Liter"
  10589. car_verbrauch := "16.7"
  10590. car_geschwindigkeit := "131 km/h"
  10591. car_level := "1"
  10592. car_tuningwerkstatt := "Wheel Arch Angels"
  10593. }
  10594. else if(Fahrzeug == 559 || Fahrzeug = "Jester")
  10595. {
  10596. car_id := 559
  10597. car_name := "Jester"
  10598. car_preis := "200.000$"
  10599. car_autohaus := "Grottis"
  10600. car_kaution := "6.0000$"
  10601. car_tank := "40 Liter"
  10602. car_verbrauch := "17.1"
  10603. car_geschwindigkeit := "138 km/h"
  10604. car_level := "1"
  10605. car_tuningwerkstatt := "Wheel Arch Angels"
  10606. }
  10607. else if(Fahrzeug == 541 || Fahrzeug = "Bullet")
  10608. {
  10609. car_id := 541
  10610. car_name := "Bullet"
  10611. car_preis := "225.000$"
  10612. car_autohaus := "Grottis"
  10613. car_kaution := "7.0000$"
  10614. car_tank := "40 Liter"
  10615. car_verbrauch := "18.2"
  10616. car_geschwindigkeit := "157 km/h"
  10617. car_level := "1"
  10618. car_tuningwerkstatt := "Transfender"
  10619. }
  10620. else if(Fahrzeug == 451 || Fahrzeug = "Turismo")
  10621. {
  10622. car_id := 451
  10623. car_name := "Turismo"
  10624. car_preis := "325.000$"
  10625. car_autohaus := "Grottis"
  10626. car_kaution := "7.0000$"
  10627. car_tank := "40 Liter"
  10628. car_verbrauch := "21.1"
  10629. car_geschwindigkeit := "150 km/h"
  10630. car_level := "1"
  10631. car_tuningwerkstatt := "Transfender"
  10632. }
  10633. else if(Fahrzeug == 415 || Fahrzeug = "Cheetah")
  10634. {
  10635. car_id := 415
  10636. car_name := "Cheetah"
  10637. car_preis := "250.000$"
  10638. car_autohaus := "Grottis"
  10639. car_kaution := "7.0000$"
  10640. car_tank := "40 Liter"
  10641. car_verbrauch := "17.6"
  10642. car_geschwindigkeit := "149 km/h"
  10643. car_level := "1"
  10644. car_tuningwerkstatt := "Transfender"
  10645. }
  10646. else if(Fahrzeug == 411 || Fahrzeug = "Infernus")
  10647. {
  10648. car_id := 411
  10649. car_name := "Infernus"
  10650. car_preis := "350.000$"
  10651. car_autohaus := "Grottis"
  10652. car_kaution := "7.0000$"
  10653. car_tank := "40 Liter"
  10654. car_verbrauch := "24.2"
  10655. car_geschwindigkeit := "172 km/h"
  10656. car_level := "1"
  10657. car_tuningwerkstatt := "Transfender"
  10658. }
  10659. else if(Fahrzeug == 402 || Fahrzeug = "Buffalo")
  10660. {
  10661. car_id := 402
  10662. car_name := "Buffalo"
  10663. car_preis := "225.000$"
  10664. car_autohaus := "Grottis"
  10665. car_kaution := "7.0000$"
  10666. car_tank := "40 Liter"
  10667. car_verbrauch := "13.3"
  10668. car_geschwindigkeit := "144 km/h"
  10669. car_level := "1"
  10670. car_tuningwerkstatt := "Transfender"
  10671. }
  10672. else if(Fahrzeug == 429 || Fahrzeug = "Banshee")
  10673. {
  10674. car_id := 429
  10675. car_name := "Banshee"
  10676. car_preis := "200.000$"
  10677. car_autohaus := "Grottis"
  10678. car_kaution := "6.0000$"
  10679. car_tank := "40 Liter"
  10680. car_verbrauch := "19.2"
  10681. car_geschwindigkeit := "156 km/h"
  10682. car_level := "1"
  10683. car_tuningwerkstatt := "Transfender"
  10684. }
  10685. else if(Fahrzeug == 602 || Fahrzeug = "Alpha")
  10686. {
  10687. car_id := 602
  10688. car_name := "Alpha"
  10689. car_preis := "250.000$"
  10690. car_autohaus := "Grottis"
  10691. car_kaution := "7.0000$"
  10692. car_tank := "40 Liter"
  10693. car_verbrauch := "17.2"
  10694. car_geschwindigkeit := "131 km/h"
  10695. car_level := "1"
  10696. car_tuningwerkstatt := "Transfender"
  10697. }
  10698. else if(Fahrzeug == 576 || Fahrzeug = "Tornado")
  10699. {
  10700. car_id := 576
  10701. car_name := "Tornado"
  10702. car_preis := "12.000$"
  10703. car_autohaus := "Intercars"
  10704. car_kaution := "4.0000$"
  10705. car_tank := "40 Liter"
  10706. car_verbrauch := "12.1"
  10707. car_geschwindigkeit := "122 km/h"
  10708. car_level := "1"
  10709. car_tuningwerkstatt := "Loco Low Co."
  10710. }
  10711. else if(Fahrzeug == 575 || Fahrzeug = "Broadway")
  10712. {
  10713. car_id := 575
  10714. car_name := "Broadway"
  10715. car_preis := "8.000$"
  10716. car_autohaus := "Intercars"
  10717. car_kaution := "4.0000$"
  10718. car_tank := "40 Liter"
  10719. car_verbrauch := "11.8"
  10720. car_geschwindigkeit := "122 km/h"
  10721. car_level := "1"
  10722. car_tuningwerkstatt := "Loco Low Co."
  10723. }
  10724. else if(Fahrzeug == 567 || Fahrzeug = "Savanna")
  10725. {
  10726. car_id := 567
  10727. car_name := "Savanna"
  10728. car_preis := "16.000$"
  10729. car_autohaus := "Intercars"
  10730. car_kaution := "4.0000$"
  10731. car_tank := "40 Liter"
  10732. car_verbrauch := "12.1"
  10733. car_geschwindigkeit := "134 km/h"
  10734. car_level := "1"
  10735. car_tuningwerkstatt := "Loco Low Co."
  10736. }
  10737. else if(Fahrzeug == 536 || Fahrzeug = "Blade")
  10738. {
  10739. car_id := 536
  10740. car_name := "Blade"
  10741. car_preis := "16.000$"
  10742. car_autohaus := "Intercars"
  10743. car_kaution := "4.0000$"
  10744. car_tank := "40 Liter"
  10745. car_verbrauch := "11.1"
  10746. car_geschwindigkeit := "134 km/h"
  10747. car_level := "1"
  10748. car_tuningwerkstatt := "Loco Low Co."
  10749. }
  10750. else if(Fahrzeug == 535 || Fahrzeug = "Slamvan")
  10751. {
  10752. car_id := 535
  10753. car_name := "Slamvan"
  10754. car_preis := "18.000$"
  10755. car_autohaus := "Intercars"
  10756. car_kaution := "4.0000$"
  10757. car_tank := "40 Liter"
  10758. car_verbrauch := "13.1"
  10759. car_geschwindigkeit := "122 km/h"
  10760. car_level := "1"
  10761. car_tuningwerkstatt := "Loco Low Co."
  10762. }
  10763. else if(Fahrzeug == 534 || Fahrzeug = "Remington")
  10764. {
  10765. car_id := 534
  10766. car_name := "Remington"
  10767. car_preis := "16.000$"
  10768. car_autohaus := "Intercars"
  10769. car_kaution := "4.0000$"
  10770. car_tank := "40 Liter"
  10771. car_verbrauch := "12.1"
  10772. car_geschwindigkeit := "131 km/h"
  10773. car_level := "1"
  10774. car_tuningwerkstatt := "Loco Low Co."
  10775. }
  10776. else if(Fahrzeug == 518 || Fahrzeug = "Buccaneer")
  10777. {
  10778. car_id := 518
  10779. car_name := "Buccaneer"
  10780. car_preis := "14.000$"
  10781. car_autohaus := "Intercars"
  10782. car_kaution := "4.0000$"
  10783. car_tank := "40 Liter"
  10784. car_verbrauch := "13.1"
  10785. car_geschwindigkeit := "127 km/h"
  10786. car_level := "1"
  10787. car_tuningwerkstatt := "Transfender"
  10788. }
  10789. else if(Fahrzeug == 419 || Fahrzeug = "Esperanto")
  10790. {
  10791. car_id := 419
  10792. car_name := "Esperanto"
  10793. car_preis := "16.000$"
  10794. car_autohaus := "Intercars"
  10795. car_kaution := "4.0000$"
  10796. car_tank := "40 Liter"
  10797. car_verbrauch := "12.1"
  10798. car_geschwindigkeit := "115 km/h"
  10799. car_level := "1"
  10800. car_tuningwerkstatt := "Transfender"
  10801. }
  10802. else if(Fahrzeug == 412 || Fahrzeug = "Voodoo")
  10803. {
  10804. car_id := 412
  10805. car_name := "Voodoo"
  10806. car_preis := "10.000$"
  10807. car_autohaus := "Intercars"
  10808. car_kaution := "4.0000$"
  10809. car_tank := "40 Liter"
  10810. car_verbrauch := "14.1"
  10811. car_geschwindigkeit := "131 km/h"
  10812. car_level := "1"
  10813. car_tuningwerkstatt := "Loco Low Co."
  10814. }
  10815. else if(Fahrzeug == 545 || Fahrzeug = "Hustler")
  10816. {
  10817. car_id := 545
  10818. car_name := "Hustler"
  10819. car_preis := "12.000$"
  10820. car_autohaus := "Intercars"
  10821. car_kaution := "4.0000$"
  10822. car_tank := "40 Liter"
  10823. car_verbrauch := "13.1"
  10824. car_geschwindigkeit := "114 km/h"
  10825. car_level := "1"
  10826. car_tuningwerkstatt := "Transfender"
  10827. }
  10828. else if(Fahrzeug == 496 || Fahrzeug = "Blista Compact" || Fahrzeug = "Blista")
  10829. {
  10830. car_id := 496
  10831. car_name := "Blista Compact"
  10832. car_preis := "4.000$"
  10833. car_autohaus := "Intercars"
  10834. car_kaution := "3.0000$"
  10835. car_tank := "40 Liter"
  10836. car_verbrauch := "10.8"
  10837. car_geschwindigkeit := "126 km/h"
  10838. car_level := "1"
  10839. car_tuningwerkstatt := "Transfender"
  10840. }
  10841. else if(Fahrzeug == 480 || Fahrzeug = "Comet")
  10842. {
  10843. car_id := 400
  10844. car_name := "Comet"
  10845. car_preis := "16.000$"
  10846. car_autohaus := "Intercars"
  10847. car_kaution := "4.0000$"
  10848. car_tank := "40 Liter"
  10849. car_verbrauch := "18.2"
  10850. car_geschwindigkeit := "143 km/h"
  10851. car_level := "1"
  10852. car_tuningwerkstatt := "Transfender"
  10853. }
  10854. else if(Fahrzeug == 562 || Fahrzeug = "Elegy")
  10855. {
  10856. car_id := 562
  10857. car_name := "Elegy"
  10858. car_preis := "16.000$"
  10859. car_autohaus := "Intercars"
  10860. car_kaution := "4.0000$"
  10861. car_tank := "40 Liter"
  10862. car_verbrauch := "18.2"
  10863. car_geschwindigkeit := "143 km/h"
  10864. car_level := "1"
  10865. car_tuningwerkstatt := "Transfender"
  10866. }
  10867. else if(Fahrzeug == 579 || Fahrzeug = "Huntley")
  10868. {
  10869. car_id := 579
  10870. car_name := "Huntley"
  10871. car_preis := "24.000$"
  10872. car_autohaus := "Intercars"
  10873. car_kaution := "4.0000$"
  10874. car_tank := "50 Liter"
  10875. car_verbrauch := "16.2"
  10876. car_geschwindigkeit := "122 km/h"
  10877. car_level := "1"
  10878. car_tuningwerkstatt := "Transfender"
  10879. }
  10880. else if(Fahrzeug == 500 || Fahrzeug = "Mesa")
  10881. {
  10882. car_id := 500
  10883. car_name := "Mesa"
  10884. car_preis := "28.000$"
  10885. car_autohaus := "Intercars"
  10886. car_kaution := "4.0000$"
  10887. car_tank := "40 Liter"
  10888. car_verbrauch := "11.5"
  10889. car_geschwindigkeit := "109 km/h"
  10890. car_level := "1"
  10891. car_tuningwerkstatt := "Transfender"
  10892. }
  10893. else if(Fahrzeug == 418 || Fahrzeug = "Moonbeam")
  10894. {
  10895. car_id := 418
  10896. car_name := "Moonbeam"
  10897. car_preis := "20.000$"
  10898. car_autohaus := "Intercars"
  10899. car_kaution := "4.0000$"
  10900. car_tank := "50 Liter"
  10901. car_verbrauch := "15.6"
  10902. car_geschwindigkeit := "89 km/h"
  10903. car_level := "1"
  10904. car_tuningwerkstatt := "Transfender"
  10905. }
  10906. else if(Fahrzeug == 549 || Fahrzeug = "Tampa")
  10907. {
  10908. car_id := 549
  10909. car_name := "Tampa"
  10910. car_preis := "4.600$"
  10911. car_autohaus := "Intercars"
  10912. car_kaution := "3.0000$"
  10913. car_tank := "40 Liter"
  10914. car_verbrauch := "13.1"
  10915. car_geschwindigkeit := "119 km/h"
  10916. car_level := "1"
  10917. car_tuningwerkstatt := "Transfender"
  10918. }
  10919. else if(Fahrzeug == 422 || Fahrzeug = "Bobcat")
  10920. {
  10921. car_id := 422
  10922. car_name := "Bobcat"
  10923. car_preis := "18.000$"
  10924. car_autohaus := "Intercars"
  10925. car_kaution := "4.0000$"
  10926. car_tank := "45 Liter"
  10927. car_verbrauch := "14.8"
  10928. car_geschwindigkeit := "108 km/h"
  10929. car_level := "1"
  10930. car_tuningwerkstatt := "Transfender"
  10931. }
  10932. else if(Fahrzeug == 482 || Fahrzeug = "Burrito")
  10933. {
  10934. car_id := 482
  10935. car_name := "Burrito"
  10936. car_preis := "16.000$"
  10937. car_autohaus := "Intercars"
  10938. car_kaution := "4.0000$"
  10939. car_tank := "40 Liter"
  10940. car_verbrauch := "17.2"
  10941. car_geschwindigkeit := "121 km/h"
  10942. car_level := "1"
  10943. car_tuningwerkstatt := "Fahrzeuglackiererei"
  10944. }
  10945. else if(Fahrzeug == 516 || Fahrzeug = "Nebula")
  10946. {
  10947. car_id := 516
  10948. car_name := "Nebula"
  10949. car_preis := "12.000$"
  10950. car_autohaus := "Intercars"
  10951. car_kaution := "4.0000$"
  10952. car_tank := "40 Liter"
  10953. car_verbrauch := "11.8"
  10954. car_geschwindigkeit := "122 km/h"
  10955. car_level := "1"
  10956. car_tuningwerkstatt := "Transfender"
  10957. }
  10958. else if(Fahrzeug == 603 || Fahrzeug = "Phoenix")
  10959. {
  10960. car_id := 603
  10961. car_name := "Phoenix"
  10962. car_preis := "28.000$"
  10963. car_autohaus := "Intercars"
  10964. car_kaution := "4.0000$"
  10965. car_tank := "40 Liter"
  10966. car_verbrauch := "14.1"
  10967. car_geschwindigkeit := "133 km/h"
  10968. car_level := "1"
  10969. car_tuningwerkstatt := "Transfender"
  10970. }
  10971. else if(Fahrzeug == 401 || Fahrzeug = "Bravura")
  10972. {
  10973. car_id := 401
  10974. car_name := "Bravura"
  10975. car_preis := "7.000$"
  10976. car_autohaus := "Ottos"
  10977. car_kaution := "4.0000$"
  10978. car_tank := "40 Liter"
  10979. car_verbrauch := "11.8"
  10980. car_geschwindigkeit := "114 km/h"
  10981. car_level := "1"
  10982. car_tuningwerkstatt := "Transfender"
  10983. }
  10984. else if(Fahrzeug == 467 || Fahrzeug = "Oceanic")
  10985. {
  10986. car_id := 467
  10987. car_name := "Oceanic"
  10988. car_preis := "16.000$"
  10989. car_autohaus := "Ottos"
  10990. car_kaution := "4.0000$"
  10991. car_tank := "40 Liter"
  10992. car_verbrauch := "12.1"
  10993. car_geschwindigkeit := "109 km/h"
  10994. car_level := "1"
  10995. car_tuningwerkstatt := "Transfender"
  10996. }
  10997. else if(Fahrzeug == 426 || Fahrzeug = "Premier")
  10998. {
  10999. car_id := 426
  11000. car_name := "Premier"
  11001. car_preis := "20.000$"
  11002. car_autohaus := "Ottos"
  11003. car_kaution := "4.0000$"
  11004. car_tank := "40 Liter"
  11005. car_verbrauch := "12.3"
  11006. car_geschwindigkeit := "134 km/h"
  11007. car_level := "1"
  11008. car_tuningwerkstatt := "Transfender"
  11009. }
  11010. else if(Fahrzeug == 405 || Fahrzeug = "Sentinel")
  11011. {
  11012. car_id := 405
  11013. car_name := "Sentinel"
  11014. car_preis := "14.900$"
  11015. car_autohaus := "Ottos"
  11016. car_kaution := "4.0000$"
  11017. car_tank := "40 Liter"
  11018. car_verbrauch := "11.3"
  11019. car_geschwindigkeit := "127 km/h"
  11020. car_level := "1"
  11021. car_tuningwerkstatt := "Transfender"
  11022. }
  11023. else if(Fahrzeug == 445 || Fahrzeug = "Admiral")
  11024. {
  11025. car_id := 445
  11026. car_name := "Admiral"
  11027. car_preis := "12.000$"
  11028. car_autohaus := "Ottos"
  11029. car_kaution := "4.0000$"
  11030. car_tank := "40 Liter"
  11031. car_verbrauch := "12.1"
  11032. car_geschwindigkeit := "127 km/h"
  11033. car_level := "1"
  11034. car_tuningwerkstatt := "Transfender"
  11035. }
  11036. else if(Fahrzeug == 507 || Fahrzeug = "Elegant")
  11037. {
  11038. car_id := 507
  11039. car_name := "Elegant"
  11040. car_preis := "20.000$"
  11041. car_autohaus := "Ottos"
  11042. car_kaution := "4.0000$"
  11043. car_tank := "40 Liter"
  11044. car_verbrauch := "11.3"
  11045. car_geschwindigkeit := "128 km/h"
  11046. car_level := "1"
  11047. car_tuningwerkstatt := "Transfender"
  11048. }
  11049. else if(Fahrzeug == 475 || Fahrzeug = "Sabre")
  11050. {
  11051. car_id := 475
  11052. car_name := "Sabre"
  11053. car_preis := "22.000$"
  11054. car_autohaus := "Ottos"
  11055. car_kaution := "4.0000$"
  11056. car_tank := "40 Liter"
  11057. car_verbrauch := "11.3"
  11058. car_geschwindigkeit := "134 km/h"
  11059. car_level := "1"
  11060. car_tuningwerkstatt := "Transfender"
  11061. }
  11062. else if(Fahrzeug == 421 || Fahrzeug = "Washington")
  11063. {
  11064. car_id := 421
  11065. car_name := "Washington"
  11066. car_preis := "21.000$"
  11067. car_autohaus := "Ottos"
  11068. car_kaution := "4.0000$"
  11069. car_tank := "40 Liter"
  11070. car_verbrauch := "13.3"
  11071. car_geschwindigkeit := "119 km/h"
  11072. car_level := "1"
  11073. car_tuningwerkstatt := "Transfender"
  11074. }
  11075. else if(Fahrzeug == 527 || Fahrzeug = "Cadrona")
  11076. {
  11077. car_id := 527
  11078. car_name := "Cadrona"
  11079. car_preis := "11.000$"
  11080. car_autohaus := "Ottos"
  11081. car_kaution := "4.0000$"
  11082. car_tank := "40 Liter"
  11083. car_verbrauch := "11.8"
  11084. car_geschwindigkeit := "115 km/h"
  11085. car_level := "1"
  11086. car_tuningwerkstatt := "Transfender"
  11087. }
  11088. else if(Fahrzeug == 550 || Fahrzeug = "Sunrise")
  11089. {
  11090. car_id := 550
  11091. car_name := "Sunrise"
  11092. car_preis := "14.000$"
  11093. car_autohaus := "Ottos"
  11094. car_kaution := "4.0000$"
  11095. car_tank := "40 Liter"
  11096. car_verbrauch := "11.8"
  11097. car_geschwindigkeit := "112 km/h"
  11098. car_level := "1"
  11099. car_tuningwerkstatt := "Transfender"
  11100. }
  11101. else if(Fahrzeug == 580 || Fahrzeug = "Stafford")
  11102. {
  11103. car_id := 580
  11104. car_name := "Stafford"
  11105. car_preis := "18.000$"
  11106. car_autohaus := "Ottos"
  11107. car_kaution := "4.0000$"
  11108. car_tank := "40 Liter"
  11109. car_verbrauch := "11.6"
  11110. car_geschwindigkeit := "118 km/h"
  11111. car_level := "1"
  11112. car_tuningwerkstatt := "Transfender"
  11113. }
  11114. else if(Fahrzeug == 492 || Fahrzeug = "Greenwood")
  11115. {
  11116. car_id := 492
  11117. car_name := "Greenwood"
  11118. car_preis := "7.500$"
  11119. car_autohaus := "Ottos"
  11120. car_kaution := "4.0000$"
  11121. car_tank := "40 Liter"
  11122. car_verbrauch := "11.6"
  11123. car_geschwindigkeit := "109 km/h"
  11124. car_level := "1"
  11125. car_tuningwerkstatt := "Transfender"
  11126. }
  11127. else if(Fahrzeug == 474 || Fahrzeug = "Hermes")
  11128. {
  11129. car_id := 474
  11130. car_name := "Hermes"
  11131. car_preis := "15.000$"
  11132. car_autohaus := "Ottos"
  11133. car_kaution := "4.0000$"
  11134. car_tank := "40 Liter"
  11135. car_verbrauch := "12.3"
  11136. car_geschwindigkeit := "115 km/h"
  11137. car_level := "1"
  11138. car_tuningwerkstatt := "Transfender"
  11139. }
  11140. else if(Fahrzeug == 542 || Fahrzeug = "Clover")
  11141. {
  11142. car_id := 542
  11143. car_name := "Clover"
  11144. car_preis := "5.000$"
  11145. car_autohaus := "Ottos"
  11146. car_kaution := "3.0000$"
  11147. car_tank := "40 Liter"
  11148. car_verbrauch := "10.1"
  11149. car_geschwindigkeit := "127 km/h"
  11150. car_level := "1"
  11151. car_tuningwerkstatt := "Transfender"
  11152. }
  11153. else if(Fahrzeug == 531 || Fahrzeug = "Tractor" || Fahrzeug = "Traktor")
  11154. {
  11155. car_id := 531
  11156. car_name := "Tractor"
  11157. car_preis := "25.000$"
  11158. car_autohaus := "Rastplatz"
  11159. car_kaution := "4.0000$"
  11160. car_tank := "25 Liter"
  11161. car_verbrauch := "7.5"
  11162. car_geschwindigkeit := "54 km/h"
  11163. car_level := "1"
  11164. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11165. }
  11166. else if(Fahrzeug == 578 || Fahrzeug = "DFT-30" || Fahrzeug = "DFT" || Fahrzeug = "DFT 30" || Fahrzeug = "DFT30")
  11167. {
  11168. car_id := 578
  11169. car_name := "DFT-30"
  11170. car_preis := "70.000$"
  11171. car_autohaus := "Rastplatz"
  11172. car_kaution := "12.0000$"
  11173. car_tank := "40 Liter"
  11174. car_verbrauch := "17.2"
  11175. car_geschwindigkeit := "101 km/h"
  11176. car_level := "1"
  11177. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11178. }
  11179. else if(Fahrzeug == 404 || Fahrzeug = "Perennial")
  11180. {
  11181. car_id := 404
  11182. car_name := "Perennial"
  11183. car_preis := "8.000$"
  11184. car_autohaus := "Rastplatz"
  11185. car_kaution := "4.0000$"
  11186. car_tank := "40 Liter"
  11187. car_verbrauch := "12.1"
  11188. car_geschwindigkeit := "103 km/h"
  11189. car_level := "1"
  11190. car_tuningwerkstatt := "Transfender"
  11191. }
  11192. else if(Fahrzeug == 478 || Fahrzeug = "Walton")
  11193. {
  11194. car_id := 478
  11195. car_name := "Walton"
  11196. car_preis := "8.000$"
  11197. car_autohaus := "Rastplatz"
  11198. car_kaution := "4.0000$"
  11199. car_tank := "40 Liter"
  11200. car_verbrauch := "14.1"
  11201. car_geschwindigkeit := "91 km/h"
  11202. car_level := "1"
  11203. car_tuningwerkstatt := "Transfender"
  11204. }
  11205. else if(Fahrzeug == 529 || Fahrzeug = "Willard")
  11206. {
  11207. car_id := 529
  11208. car_name := "Willard"
  11209. car_preis := "8.000$"
  11210. car_autohaus := "Rastplatz"
  11211. car_kaution := "4.0000$"
  11212. car_tank := "40 Liter"
  11213. car_verbrauch := "11.6"
  11214. car_geschwindigkeit := "115 km/h"
  11215. car_level := "1"
  11216. car_tuningwerkstatt := "Transfender"
  11217. }
  11218. else if(Fahrzeug == 554 || Fahrzeug = "Yosemite")
  11219. {
  11220. car_id := 554
  11221. car_name := "Yosemite"
  11222. car_preis := "18.000$"
  11223. car_autohaus := "Rastplatz"
  11224. car_kaution := "4.0000$"
  11225. car_tank := "40 Liter"
  11226. car_verbrauch := "13.1"
  11227. car_geschwindigkeit := "111 km/h"
  11228. car_level := "1"
  11229. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11230. }
  11231. else if(Fahrzeug == 446 || Fahrzeug = "Squallo" || Fahrzeug = "Squalo")
  11232. {
  11233. car_id := 446
  11234. car_name := "Squalo"
  11235. car_preis := "500.000$"
  11236. car_autohaus := "Strand"
  11237. car_kaution := "/"
  11238. car_tank := "70 Liter"
  11239. car_verbrauch := "19.2"
  11240. car_geschwindigkeit := "180 km/h"
  11241. car_level := "6"
  11242. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11243. }
  11244. else if(Fahrzeug == 454 || Fahrzeug = "Tropic")
  11245. {
  11246. car_id := 454
  11247. car_name := "Tropic"
  11248. car_preis := "750.000$"
  11249. car_autohaus := "Strand"
  11250. car_kaution := "/"
  11251. car_tank := "70 Liter"
  11252. car_verbrauch := "22.3"
  11253. car_geschwindigkeit := "99 km/h"
  11254. car_level := "12"
  11255. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11256. }
  11257. else if(Fahrzeug == 493 || Fahrzeug = "Jetmax")
  11258. {
  11259. car_id := 493
  11260. car_name := "Jetmax"
  11261. car_preis := "500.000$"
  11262. car_autohaus := "Strand"
  11263. car_kaution := "/"
  11264. car_tank := "60 Liter"
  11265. car_verbrauch := "19.1"
  11266. car_geschwindigkeit := "130 km/h"
  11267. car_level := "6"
  11268. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11269. }
  11270. else if(Fahrzeug == 452 || Fahrzeug = "Speeder")
  11271. {
  11272. car_id := 452
  11273. car_name := "Speeder"
  11274. car_preis := "500.000$"
  11275. car_autohaus := "Strand"
  11276. car_kaution := "/"
  11277. car_tank := "70 Liter"
  11278. car_verbrauch := "19.5"
  11279. car_geschwindigkeit := "130 km/h"
  11280. car_level := "6"
  11281. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11282. }
  11283. else if(Fahrzeug == 473 || Fahrzeug = "Dinghy")
  11284. {
  11285. car_id := 473
  11286. car_name := "Dinghy"
  11287. car_preis := "25.000$"
  11288. car_autohaus := "Strand"
  11289. car_kaution := "/"
  11290. car_tank := "30 Liter"
  11291. car_verbrauch := "9.8"
  11292. car_geschwindigkeit := "83 km/h"
  11293. car_level := "1"
  11294. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11295. }
  11296. else if(Fahrzeug == 458 || Fahrzeug = "Solair")
  11297. {
  11298. car_id := 458
  11299. car_name := "Solair"
  11300. car_preis := "16.000$"
  11301. car_autohaus := "Wang Cars"
  11302. car_kaution := "4.000$"
  11303. car_tank := "40 Liter"
  11304. car_verbrauch := "12.1"
  11305. car_geschwindigkeit := "122 km/h"
  11306. car_level := "1"
  11307. car_tuningwerkstatt := "Transfender"
  11308. }
  11309. else if(Fahrzeug == 561 || Fahrzeug = "Stratum")
  11310. {
  11311. car_id := 561
  11312. car_name := "Stratum"
  11313. car_preis := "16.000$"
  11314. car_autohaus := "Wang Cars"
  11315. car_kaution := "4.000$"
  11316. car_tank := "40 Liter"
  11317. car_verbrauch := "13.1"
  11318. car_geschwindigkeit := "119 km/h"
  11319. car_level := "1"
  11320. car_tuningwerkstatt := "Wheel Arch Angels"
  11321. }
  11322. else if(Fahrzeug == 424 || Fahrzeug = "BF Injection" || Fahrzeug = "bfinjection" || Fahrzeug = "injection")
  11323. {
  11324. car_id := 424
  11325. car_name := "BF Injection"
  11326. car_preis := "500.000$"
  11327. car_autohaus := "Wang Cars"
  11328. car_kaution := "12.000$"
  11329. car_tank := "40 Liter"
  11330. car_verbrauch := "13.1"
  11331. car_geschwindigkeit := "105 km/h"
  11332. car_level := "1"
  11333. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11334. }
  11335. else if(Fahrzeug == 400 || Fahrzeug = "Landstalker")
  11336. {
  11337. car_id := 400
  11338. car_name := "Landstalker"
  11339. car_preis := "18.000$"
  11340. car_autohaus := "Wang Cars"
  11341. car_kaution := "4.000$"
  11342. car_tank := "40 Liter"
  11343. car_verbrauch := "16.7"
  11344. car_geschwindigkeit := "122 km/h"
  11345. car_level := "1"
  11346. car_tuningwerkstatt := "Transfender"
  11347. }
  11348. else if(Fahrzeug == 589 || Fahrzeug = "Club")
  11349. {
  11350. car_id := 589
  11351. car_name := "Club"
  11352. car_preis := "22.000$"
  11353. car_autohaus := "Wang Cars"
  11354. car_kaution := "4.000$"
  11355. car_tank := "40 Liter"
  11356. car_verbrauch := "11.3"
  11357. car_geschwindigkeit := "126 km/h"
  11358. car_level := "1"
  11359. car_tuningwerkstatt := "Transfender"
  11360. }
  11361. else if(Fahrzeug == 565 || Fahrzeug = "Flash")
  11362. {
  11363. car_id := 565
  11364. car_name := "Flash"
  11365. car_preis := "22.000$"
  11366. car_autohaus := "Wang Cars"
  11367. car_kaution := "4.000$"
  11368. car_tank := "40 Liter"
  11369. car_verbrauch := "10.8"
  11370. car_geschwindigkeit := "127 km/h"
  11371. car_level := "1"
  11372. car_tuningwerkstatt := "Wheel Arch Angels"
  11373. }
  11374. else if(Fahrzeug == 558 || Fahrzeug = "Uranus")
  11375. {
  11376. car_id := 558
  11377. car_name := "Uranus"
  11378. car_preis := "90.000$"
  11379. car_autohaus := "Wang Cars"
  11380. car_kaution := "5.000$"
  11381. car_tank := "40 Liter"
  11382. car_verbrauch := "18.2"
  11383. car_geschwindigkeit := "121 km/h"
  11384. car_level := "1"
  11385. car_tuningwerkstatt := "Wheel Arch Angels"
  11386. }
  11387. else if(Fahrzeug == 471 || Fahrzeug = "Quad")
  11388. {
  11389. car_id := 471
  11390. car_name := "Quad"
  11391. car_preis := "80.000$"
  11392. car_autohaus := "Wang Cars"
  11393. car_kaution := "5.000$"
  11394. car_tank := "20 Liter"
  11395. car_verbrauch := "9.8"
  11396. car_geschwindigkeit := "85 km/h"
  11397. car_level := "1"
  11398. car_tuningwerkstatt := "Fahrzeuglackiererei"
  11399. }
  11400. else if(Fahrzeug == 409 || Fahrzeug = "Stretch" || Fahrzeug = "Limo" || Fahrzeug = "Limousine")
  11401. {
  11402. car_id := 409
  11403. car_name := "Stretch"
  11404. car_preis := "1.000.000$"
  11405. car_autohaus := "Wang Cars"
  11406. car_kaution := "12.000$"
  11407. car_tank := "50 Liter"
  11408. car_verbrauch := "17.8"
  11409. car_geschwindigkeit := "122 km/h"
  11410. car_level := "1"
  11411. car_tuningwerkstatt := "Transfender"
  11412. }
  11413. else if(Fahrzeug == 587 || Fahrzeug = "Euros")
  11414. {
  11415. car_id := 587
  11416. car_name := "Euros"
  11417. car_preis := "90.000$"
  11418. car_autohaus := "Wang Cars"
  11419. car_kaution := "5.000$"
  11420. car_tank := "40 Liter"
  11421. car_verbrauch := "15.3"
  11422. car_geschwindigkeit := "127 km/h"
  11423. car_level := "1"
  11424. car_tuningwerkstatt := "Transfender"
  11425. }
  11426. else if(Fahrzeug == 489 || Fahrzeug = "Rancher")
  11427. {
  11428. car_id := 489
  11429. car_name := "Rancher"
  11430. car_preis := "20.000$"
  11431. car_autohaus := "Wang Cars"
  11432. car_kaution := "4.000$"
  11433. car_tank := "40 Liter"
  11434. car_verbrauch := "16.7"
  11435. car_geschwindigkeit := "108 km/h"
  11436. car_level := "1"
  11437. car_tuningwerkstatt := "Transfender"
  11438. }
  11439. else if(Fahrzeug == 434 || Fahrzeug = "Hotknife")
  11440. {
  11441. car_id := 434
  11442. car_name := "Hotknife"
  11443. car_preis := "500.000$"
  11444. car_autohaus := "Wang Cars"
  11445. car_kaution := "12.000$"
  11446. car_tank := "40 Liter"
  11447. car_verbrauch := "13.1"
  11448. car_geschwindigkeit := "129 km/h"
  11449. car_level := "1"
  11450. car_tuningwerkstatt := "/"
  11451. }
  11452. else if(Fahrzeug == 439 || Fahrzeug = "Stallion")
  11453. {
  11454. car_id := 439
  11455. car_name := "Stallion"
  11456. car_preis := "26.000$"
  11457. car_autohaus := "Wang Cars"
  11458. car_kaution := "4.000$"
  11459. car_tank := "40 Liter"
  11460. car_verbrauch := "12.5"
  11461. car_geschwindigkeit := "130 km/h"
  11462. car_level := "1"
  11463. car_tuningwerkstatt := "Transfender"
  11464. }
  11465. else if(Fahrzeug == 555 || Fahrzeug = "Windsor")
  11466. {
  11467. car_id := 555
  11468. car_name := "Windsor"
  11469. car_preis := "24.000$"
  11470. car_autohaus := "Wang Cars"
  11471. car_kaution := "4.000$"
  11472. car_tank := "40 Liter"
  11473. car_verbrauch := "15.1"
  11474. car_geschwindigkeit := "122 km/h"
  11475. car_level := "1"
  11476. car_tuningwerkstatt := "Transfender"
  11477. }
  11478. else if(Fahrzeug == 533 || Fahrzeug = "Feltzer")
  11479. {
  11480. car_id := 533
  11481. car_name := "Feltzer"
  11482. car_preis := "26.000$"
  11483. car_autohaus := "Wang Cars"
  11484. car_kaution := "4.000$"
  11485. car_tank := "40 Liter"
  11486. car_verbrauch := "11.8"
  11487. car_geschwindigkeit := "129 km/h"
  11488. car_level := "1"
  11489. car_tuningwerkstatt := "Transfender"
  11490. }
  11491. else if(Fahrzeug == 477 || Fahrzeug = "ZR-350" || Fahrzeug = "ZR" || Fahrzeug = "ZR 350" || Fahrzeug = "ZR350")
  11492. {
  11493. car_id := 477
  11494. car_name := "ZR-350"
  11495. car_preis := "120.000$"
  11496. car_autohaus := "Wang Cars"
  11497. car_kaution := "6.000$"
  11498. car_tank := "40 Liter"
  11499. car_verbrauch := "17.2"
  11500. car_geschwindigkeit := "144 km/h"
  11501. car_level := "1"
  11502. car_tuningwerkstatt := "Transfender"
  11503. }
  11504. else
  11505. {
  11506. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Das Fahrzeug wurde nicht gefunden.")
  11507. return
  11508. }
  11509. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Informationen f? das Fahrzeug {FFBF00}" car_name " {FFFFFF}[Model-ID: {FFBF00}" car_id "{FFFFFF}]:")
  11510. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Authoaus: {FFBF00}" car_autohaus "{FFFFFF}, Preis: {FFBF00}" car_preis "{FFFFFF}, Kaution: {FFBF00}" car_kaution "{FFFFFF}.")
  11511. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Geschwindigkeit: {FFBF00}" car_geschwindigkeit "{FFFFFF}, Verbrauch: {FFBF00}" car_verbrauch "{FFFFFF}, Tank: {FFBF00}" car_tank "{FFFFFF}.")
  11512. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Tuningwerkstatt: {FFBF00}" car_tuningwerkstatt "{FFFFFF}, Mindestlevel: {FFBF00}" car_level "{FFFFFF}.")
  11513. return
  11514.  
  11515.  
  11516. Paintball:
  11517. IfWinNotActive, GTA:SA:MP
  11518. return
  11519. GetPlayerName(Spieler)
  11520. GetChatLine(0, Chat1)
  11521.  
  11522. If(inStr(Chat1, "" Spieler " wurde von ") && InStr(Chat1, "get?et."))
  11523. {
  11524. IniRead, Paintballtod, Statistik.ini, Paintball, Paintballtod
  11525. Paintballtod++
  11526. IniWrite, %Paintballtod%, Statistik.ini, Paintball, Paintballtod
  11527. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Paintballniederlage Nummer {FFBF00}" Paintballtod "{FFFFFF}.")
  11528. }
  11529.  
  11530. If(inStr(Chat1, "wurde von " Spieler " get?et."))
  11531. {
  11532. IniRead, Paintballkill, Statistik.ini, Paintball, Paintballkill
  11533. Paintballkill++
  11534. IniWrite, %Paintballkill%, Statistik.ini, Paintball, Paintballkill
  11535. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Paintballsieg Nummer {FFBF00}" Paintballkill "{FFFFFF}.")
  11536. }
  11537. return
  11538.  
  11539.  
  11540.  
  11541. !Numpad1::
  11542. VerbrecherID := PlayerInput("ATK: ")
  11543. FormatTime, Zeit, , HH:mm
  11544. SendChat("/suspect " . VerbrecherID . " Angriff/Beschuss auf Beamte/Zivilisten - " Zeit " Uhr")
  11545. SendChat("/suspect " . VerbrecherID . " Angriff/Beschuss auf Beamte/Zivilisten - " Zeit " Uhr")
  11546. if(id != "")
  11547. {
  11548. Sleep, 200
  11549. GetChatLine(0, chat)
  11550. GetPlayerName(Name)
  11551. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11552. {
  11553. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11554. Wanted+=2
  11555. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11556. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11557.  
  11558. }
  11559. }
  11560. return
  11561.  
  11562. !Numpad2::
  11563. FormatTime, Zeit, , HH:mm
  11564. VerbrecherID := PlayerInput("Flucht: ")
  11565. SendChat("/suspect " . VerbrecherID . " Flucht(Versuch) - " Zeit " Uhr")
  11566. SendChat("/suspect " . VerbrecherID . " Flucht(Versuch) - " Zeit " Uhr")
  11567. if(id != "")
  11568. {
  11569. Sleep, 200
  11570. GetChatLine(0, chat)
  11571. GetPlayerName(Name)
  11572. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11573. {
  11574. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11575. Wanted+=2
  11576. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11577. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11578. }
  11579.  
  11580.  
  11581. VerbrecherID := id
  11582.  
  11583. if(id != "")
  11584. {
  11585. SetTimer, Find , Off
  11586. AID := id
  11587. SendChat("/find " AID)
  11588. SetTimer, Find , 6000
  11589. }
  11590. }
  11591. return
  11592.  
  11593. !Numpad3::
  11594. VerbrecherID := PlayerInput("Veweigerung: ")
  11595. FormatTime, Zeit, , HH:mm
  11596. SendChat("/suspect " . VerbrecherID . " Verweigerung von Anweisungen - " Zeit " Uhr")
  11597. if(id != "")
  11598. {
  11599. Sleep, 200
  11600. GetChatLine(0, chat)
  11601. GetPlayerName(Name)
  11602. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11603. {
  11604. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11605. Wanted++
  11606. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11607. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11608. }
  11609. }
  11610. return
  11611.  
  11612. !Numpad4::
  11613. VerbrecherID := PlayerInput("BDJ: ")
  11614. FormatTime, Zeit, , HH:mm
  11615. SendChat("/suspect " . VerbrecherID . " Behinderung der Justiz - " Zeit " Uhr")
  11616. if(id != "")
  11617. {
  11618. Sleep, 200
  11619. GetChatLine(0, chat)
  11620. GetPlayerName(Name)
  11621. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11622. {
  11623. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11624. Wanted++
  11625. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11626. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11627. }
  11628. }
  11629. return
  11630.  
  11631. !Numpad5::
  11632. VerbrecherID := PlayerInput("Mats: ")
  11633. FormatTime, Zeit, , HH:mm
  11634. SendChat("/suspect " . VerbrecherID . " Besitz von Materialien/Drogen")
  11635. SendChat("/suspect " . VerbrecherID . " Besitz von Materialien/Drogen")
  11636. if(id != "")
  11637. {
  11638. Sleep, 200
  11639. GetChatLine(0, chat)
  11640. GetPlayerName(Name)
  11641. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11642. {
  11643. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11644. Wanted+=2
  11645. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11646. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11647. }
  11648. }
  11649. return
  11650.  
  11651. !Numpad6::
  11652. VerbrecherID := PlayerInput("Drogen: ")
  11653. FormatTime, Zeit, , HH:mm
  11654. SendChat("/suspect " . VerbrecherID . " Versto?gegen das Bet?bungsmittelgesetz")
  11655. SendChat("/suspect " . VerbrecherID . " Versto?gegen das Bet?bungsmittelgesetz")
  11656. if(id != "")
  11657. {
  11658. Sleep, 200
  11659. GetChatLine(0, chat)
  11660. GetPlayerName(Name)
  11661. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11662. {
  11663. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11664. Wanted+=2
  11665. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11666. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11667. }
  11668. }
  11669. return
  11670.  
  11671. !Numpad7::
  11672. FormatTime, Zeit, , HH:mm
  11673. VerbrecherID := PlayerInput("Behilfe: ")
  11674. SendChat("/suspect " . VerbrecherID . " Beihilfe zur Flucht")
  11675. SendChat("/suspect " . VerbrecherID . " Beihilfe zur Flucht")
  11676. if(id != "")
  11677. {
  11678. Sleep, 200
  11679. GetChatLine(0, chat)
  11680. GetPlayerName(Name)
  11681. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11682. {
  11683. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11684. Wanted+=2
  11685. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11686. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11687.  
  11688. }
  11689. }
  11690. return
  11691.  
  11692. !Numpad8::
  11693. VerbrecherID := PlayerInput("Waffenhandel: ")
  11694. FormatTime, Zeit, , HH:mm
  11695. SendChat("/suspect " . VerbrecherID . " Handel von Drogen/Waffen")
  11696. SendChat("/suspect " . VerbrecherID . " Handel von Drogen/Waffen")
  11697. if(id != "")
  11698. {
  11699. Sleep, 200
  11700. GetChatLine(0, chat)
  11701. GetPlayerName(Name)
  11702. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11703. {
  11704. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11705. Wanted+=2
  11706. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11707. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11708. }
  11709. }
  11710. return
  11711.  
  11712. !Numpad9::
  11713. VerbrecherID := PlayerInput("Einbruch: ")
  11714. FormatTime, Zeit, , HH:mm
  11715. SendChat("/suspect " . VerbrecherID . " Unautorisiertes Betreten eines Gel?des/Fahrzeuges")
  11716. SendChat("/suspect " . VerbrecherID . " Unautorisiertes Betreten eines Gel?des/Fahrzeuges")
  11717. if(id != "")
  11718. {
  11719. Sleep, 200
  11720. GetChatLine(0, chat)
  11721. GetPlayerName(Name)
  11722. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11723. {
  11724. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11725. Wanted+=2
  11726. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11727. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11728. }
  11729. }
  11730. return
  11731.  
  11732. !1::
  11733. VerbrecherID := PlayerInput("Angriff/Beschuss: ")
  11734. FormatTime, Zeit, , HH:mm
  11735. SendChat("/suspect " . VerbrecherID . " Angriff / Beschuss auf Beamte / Zivilisten (" Zeit ")")
  11736. SendChat("/suspect " . VerbrecherID . " Angriff / Beschuss auf Beamte / Zivilisten (" Zeit ")")
  11737. if(id != "")
  11738. {
  11739. Sleep, 200
  11740. GetChatLine(0, chat)
  11741. GetPlayerName(Name)
  11742. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11743. {
  11744. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11745. Wanted+=2
  11746. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11747. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11748.  
  11749. }
  11750. }
  11751. return
  11752.  
  11753. !2::
  11754. FormatTime, Zeit, , HH:mm
  11755. VerbrecherID := PlayerInput("Flucht: ")
  11756. SendChat("/suspect " . VerbrecherID . " Flucht / Fluchtversuch (" Zeit ")")
  11757. SendChat("/suspect " . VerbrecherID . " Flucht / Fluchtversuch (" Zeit ")")
  11758. if(id != "")
  11759. {
  11760. Sleep, 200
  11761. GetChatLine(0, chat)
  11762. GetPlayerName(Name)
  11763. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11764. {
  11765. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11766. Wanted+=2
  11767. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11768. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11769. }
  11770.  
  11771.  
  11772. fluchtID := id
  11773.  
  11774. if(id != "")
  11775. {
  11776. SetTimer, Find , Off
  11777. AID := id
  11778. SendChat("/find " AID)
  11779. SetTimer, Find , 6000
  11780. }
  11781. }
  11782. return
  11783.  
  11784. !3::
  11785. VerbrecherID := PlayerInput("Verweigerung: ")
  11786. FormatTime, Zeit, , HH:mm
  11787. SendChat("/suspect " . VerbrecherID . " Verweigerung von Anweisungen (" Zeit ")")
  11788. if(id != "")
  11789. {
  11790. Sleep, 200
  11791. GetChatLine(0, chat)
  11792. GetPlayerName(Name)
  11793. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11794. {
  11795. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11796. Wanted++
  11797. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11798. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11799. }
  11800. }
  11801. return
  11802.  
  11803. !4::
  11804. VerbrecherID := PlayerInput("Behinderung der Justiz: ")
  11805. FormatTime, Zeit, , HH:mm
  11806. SendChat("/suspect " . VerbrecherID . " Behinderung der Justiz (" Zeit ")")
  11807. if(id != "")
  11808. {
  11809. Sleep, 200
  11810. GetChatLine(0, chat)
  11811. GetPlayerName(Name)
  11812. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11813. {
  11814. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11815. Wanted++
  11816. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11817. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11818. }
  11819. }
  11820. return
  11821.  
  11822. !5::
  11823. VerbrecherID := PlayerInput("Materialien: ")
  11824. FormatTime, Zeit, , HH:mm
  11825. SendChat("/suspect " . VerbrecherID . " Besitz von illegalen Materialien (" Zeit ")")
  11826. SendChat("/suspect " . VerbrecherID . " Besitz von illegalen Materialien (" Zeit ")")
  11827. if(id != "")
  11828. {
  11829. Sleep, 200
  11830. GetChatLine(0, chat)
  11831. GetPlayerName(Name)
  11832. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11833. {
  11834. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11835. Wanted+=2
  11836. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11837. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11838. }
  11839. }
  11840. return
  11841.  
  11842. !6::
  11843. VerbrecherID := PlayerInput("Drogen: ")
  11844. FormatTime, Zeit, , HH:mm
  11845. SendChat("/suspect " . VerbrecherID . " Versto?gegen das Bet?bungsmittelgesetz (" Zeit ")")
  11846. SendChat("/suspect " . VerbrecherID . " Versto?gegen das Bet?bungsmittelgesetz (" Zeit ")")
  11847. if(id != "")
  11848. {
  11849. Sleep, 200
  11850. GetChatLine(0, chat)
  11851. GetPlayerName(Name)
  11852. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11853. {
  11854. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11855. Wanted+=2
  11856. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11857. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11858. }
  11859. }
  11860. return
  11861.  
  11862. !7::
  11863. FormatTime, Zeit, , HH:mm
  11864. VerbrecherID := PlayerInput("Beihilfe: ")
  11865. SendChat("/suspect " . VerbrecherID . " Beihilfe zur Flucht (" Zeit ")")
  11866. SendChat("/suspect " . VerbrecherID . " Beihilfe zur Flucht (" Zeit ")")
  11867. if(id != "")
  11868. {
  11869. Sleep, 200
  11870. GetChatLine(0, chat)
  11871. GetPlayerName(Name)
  11872. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11873. {
  11874. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11875. Wanted+=2
  11876. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11877. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11878.  
  11879. }
  11880. }
  11881. return
  11882.  
  11883. !8::
  11884. VerbrecherID := PlayerInput("Drogen-/Waffenhandel: ")
  11885. FormatTime, Zeit, , HH:mm
  11886. SendChat("/suspect " . VerbrecherID . " Illegaler Handel von Drogen / Waffen (" Zeit ")")
  11887. SendChat("/suspect " . VerbrecherID . " Illegaler Handel von Drogen / Waffen (" Zeit ")")
  11888. if(id != "")
  11889. {
  11890. Sleep, 200
  11891. GetChatLine(0, chat)
  11892. GetPlayerName(Name)
  11893. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11894. {
  11895. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11896. Wanted+=2
  11897. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11898. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11899. }
  11900. }
  11901. return
  11902.  
  11903. !9::
  11904. VerbrecherID := PlayerInput("Einbruch: ")
  11905. FormatTime, Zeit, , HH:mm
  11906. SendChat("/suspect " . VerbrecherID . " Unautorisiertes Betreten eines Gel?des/Fahrzeuges (" Zeit ")")
  11907. SendChat("/suspect " . VerbrecherID . " Unautorisiertes Betreten eines Gel?des/Fahrzeuges (" Zeit ")")
  11908. if(id != "")
  11909. {
  11910. Sleep, 200
  11911. GetChatLine(0, chat)
  11912. GetPlayerName(Name)
  11913. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11914. {
  11915. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11916. Wanted+=2
  11917. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11918. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11919. }
  11920. }
  11921. return
  11922.  
  11923. !J::
  11924. VerbrecherID := PlayerInput("Fahrer-ID: ")
  11925. FormatTime, Zeit, , HH:mm
  11926. SendChat("/suspect " . VerbrecherID . " Absichtliches Anfahren von Beamten/Zivilisten - " Zeit " Uhr")
  11927. if(id != "")
  11928. {
  11929. Sleep, 200
  11930. GetChatLine(0, chat)
  11931. GetPlayerName(Name)
  11932. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11933. {
  11934. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11935. Wanted++
  11936. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11937. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11938. }
  11939. }
  11940. return
  11941.  
  11942. !K::
  11943. VerbrecherID := PlayerInput("Privat: ")
  11944. FormatTime, Zeit, , HH:mm
  11945. SendChat("/suspect " . VerbrecherID . " Diebstahl von Privatfahrzeugen")
  11946. SendChat("/suspect " . VerbrecherID . " Diebstahl von Privatfahrzeugen")
  11947. if(id != "")
  11948. {
  11949. Sleep, 200
  11950. GetChatLine(0, chat)
  11951. GetPlayerName(Name)
  11952. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11953. {
  11954. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11955. Wanted+=2
  11956. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11957. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11958. }
  11959. }
  11960. return
  11961.  
  11962. !L::
  11963. VerbrecherID := PlayerInput("Staats: ")
  11964. FormatTime, Zeit, , HH:mm
  11965. SendChat("/suspect " . VerbrecherID . " Diebstahl von Staatsfahrzeugen")
  11966. SendChat("/suspect " . VerbrecherID . " Diebstahl von Staatsfahrzeugen")
  11967. Sleep, 1500
  11968. SendChat("/suspect " . VerbrecherID . " Diebstahl von Staatsfahrzeugen")
  11969. SendChat("/suspect " . VerbrecherID . " Diebstahl von Staatsfahrzeugen")
  11970. if(id != "")
  11971. {
  11972. Sleep, 200
  11973. GetChatLine(0, chat)
  11974. GetPlayerName(Name)
  11975. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  11976. {
  11977. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  11978. Wanted+=4
  11979. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  11980. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  11981. }
  11982. }
  11983. return
  11984.  
  11985. !?:
  11986. VerbrecherID := PlayerInput("Bewaffnet: ")
  11987. FormatTime, Zeit, , HH:mm
  11988. SendChat("/suspect " . VerbrecherID . " Diebstahl von schweren / bewaffneten Staatsfahrzeugen")
  11989. SendChat("/suspect " . VerbrecherID . " Diebstahl von schweren / bewaffneten Staatsfahrzeugen")
  11990. Sleep, 1500
  11991. SendChat("/suspect " . VerbrecherID . " Diebstahl von schweren / bewaffneten Staatsfahrzeugen")
  11992. SendChat("/suspect " . VerbrecherID . " Diebstahl von schweren / bewaffneten Staatsfahrzeugen")
  11993. Sleep, 1500
  11994. SendChat("/suspect " . VerbrecherID . " Diebstahl von schweren / bewaffneten Staatsfahrzeugen")
  11995. SendChat("/suspect " . VerbrecherID . " Diebstahl von schweren / bewaffneten Staatsfahrzeugen")
  11996. if(id != "")
  11997. {
  11998. Sleep, 200
  11999. GetChatLine(0, chat)
  12000. GetPlayerName(Name)
  12001. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12002. {
  12003. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12004. Wanted+=6
  12005. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12006. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12007. }
  12008. }
  12009. return
  12010.  
  12011. !O::
  12012. VerbrecherID := PlayerInput("Beamtenbeleidigung: ")
  12013. FormatTime, Zeit, , HH:mm
  12014. SendChat("/suspect " . VerbrecherID . " Beamtenbeleidigung / Umganston - " Zeit " Uhr)")
  12015. if(id != "")
  12016. {
  12017. Sleep, 200
  12018. GetChatLine(0, chat)
  12019. GetPlayerName(Name)
  12020. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12021. {
  12022. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12023. Wanted++
  12024. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12025. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12026. }
  12027. }
  12028. return
  12029.  
  12030. !i::
  12031. VerbrecherID := PlayerInput("Waffengebrauch: ")
  12032. FormatTime, Zeit, , HH:mm
  12033. SendChat("/suspect " . VerbrecherID . " Waffengebrauch in der ?fentlichkeit - " Zeit " Uhr")
  12034. SendChat("/suspect " . VerbrecherID . " Waffengebrauch in der ?fentlichkeit - " Zeit " Uhr")
  12035. if(id != "")
  12036. {
  12037. Sleep, 200
  12038. GetChatLine(0, chat)
  12039. GetPlayerName(Name)
  12040. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12041. {
  12042. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12043. Wanted+=2
  12044. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12045. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12046. }
  12047. }
  12048. return
  12049.  
  12050. !p::
  12051. VerbrecherID := PlayerInput("Illegale Waffenbesitz: ")
  12052. FormatTime, Zeit, , HH:mm
  12053. SendChat("/suspect " . VerbrecherID . " Waffenbesitz ohne Waffenlizenz - " Zeit " Uhr")
  12054. SendChat("/suspect " . VerbrecherID . " Waffenbesitz ohne Waffenlizenz - " Zeit " Uhr")
  12055. if(id != "")
  12056. {
  12057. Sleep, 200
  12058. GetChatLine(0, chat)
  12059. GetPlayerName(Name)
  12060. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12061. {
  12062. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12063. Wanted+=2
  12064. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12065. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12066. }
  12067. }
  12068. return
  12069.  
  12070. !n::
  12071. VerbrecherID := PlayerInput("Notrufmissbrauch: ")
  12072. FormatTime, Zeit, , HH:mm
  12073. SendChat("/suspect " . VerbrecherID . " Missbrauch des Notrufes - " Zeit " Uhr")
  12074. SendChat("/suspect " . VerbrecherID . " Behinderung der Justiz - " Zeit " Uhr")
  12075. if(id != "")
  12076. {
  12077. Sleep, 200
  12078. GetChatLine(0, chat)
  12079. GetPlayerName(Name)
  12080. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12081. {
  12082. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12083. Wanted+=2
  12084. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12085. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12086. }
  12087. }
  12088. return
  12089.  
  12090. !z::
  12091. VerbrecherID := PlayerInput("Zollflucht: ")
  12092. FormatTime, Zeit, , HH:mm
  12093. SendChat("/suspect " . VerbrecherID . " Zollflucht - " Zeit " Uhr")
  12094. SendChat("/suspect " . VerbrecherID . " Zollflucht - " Zeit " Uhr")
  12095. if(id != "")
  12096. {
  12097. Sleep, 200
  12098. GetChatLine(0, chat)
  12099. GetPlayerName(Name)
  12100. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12101. {
  12102. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12103. Wanted+=2
  12104. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12105. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12106. }
  12107. }
  12108. return
  12109.  
  12110. !b::
  12111. VerbrecherID := PlayerInput("Bestechung: ")
  12112. FormatTime, Zeit, , HH:mm
  12113. SendChat("/suspect " . VerbrecherID . " Bestechungsversuch eines Beamten (" Zeit ")")
  12114. SendChat("/suspect " . VerbrecherID . " Bestechungsversuch eines Beamten (" Zeit ")")
  12115. if(id != "")
  12116. {
  12117. Sleep, 200
  12118. GetChatLine(0, chat)
  12119. GetPlayerName(Name)
  12120. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12121. {
  12122. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12123. Wanted+=2
  12124. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12125. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12126. }
  12127. }
  12128. return
  12129.  
  12130. !g::
  12131. VerbrecherID := PlayerInput("Stra?nverkehrsgef?rdung: ")
  12132. FormatTime, Zeit, , HH:mm
  12133. SendChat("/suspect " VerbrecherID " Gef?rdung des Stra?nverkehrs - " Zeit " Uhr")
  12134. if(id != "")
  12135. {
  12136. Sleep, 200
  12137. GetChatLine(0, chat)
  12138. GetPlayerName(Name)
  12139. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))0x00BFFF
  12140. {
  12141. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12142. Wanted+=1
  12143. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12144. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")+
  12145. }
  12146. }
  12147. return
  12148.  
  12149. :?:/fstreife::
  12150. Suspend Permit
  12151. SendChat("/f suche Streifenpartner, bei Interesse melden!")
  12152. return
  12153. :?:/streife::
  12154. Suspend Permit
  12155. SendChat("/hq suche Streifenpartner, bei Interesse melden!")
  12156. return
  12157.  
  12158. ~P::
  12159. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  12160. {
  12161. return
  12162. }
  12163. if(PoliceID != "X")
  12164. {
  12165. if(text != "-1")
  12166. {
  12167. SendChat("/hq " . text . "")
  12168. }
  12169. }
  12170. else
  12171. {
  12172. GetCityName(city)
  12173. GetZoneName(zone)
  12174. If (city == "" || city == "Unbekannt")
  12175. {
  12176. SendChat("/hq Ich befinde mich derzeit in " zone ".")
  12177. }
  12178. else
  12179. {
  12180. SendChat("/hq Ich befinde mich derzeit in " zone ", " city ".")
  12181. }
  12182. }
  12183. return
  12184. ^P::
  12185. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  12186. {
  12187. return
  12188. }
  12189. if(PoliceID != "X")
  12190. {
  12191. if(text != "-1")
  12192. {
  12193. SendChat("/d " . text . "")
  12194. }
  12195. }
  12196. else
  12197. {
  12198. GetCityName(city)
  12199. GetZoneName(zone)
  12200. If (city == "" || city == "Unbekannt")
  12201. {
  12202. SendChat("/d HQ: Ich befinde mich derzeit in " zone ".")
  12203. }
  12204. else
  12205. {
  12206. SendChat("/d HQ: Ich befinde mich derzeit in " zone ", " city "")
  12207. }
  12208. }
  12209. return
  12210. !^P::
  12211. if(IsChatOpen() == 1 || IsDialogOpen() == 1)
  12212. {
  12213. return
  12214. }
  12215. if(PoliceID != "X")
  12216. {
  12217. if(text != "-1")
  12218. {
  12219. SendChat("/r " . text . "")
  12220. }
  12221. }
  12222. else
  12223. {
  12224. GetCityName(city)
  12225. GetZoneName(zone)
  12226. If (city == "" || city == "Unbekannt")
  12227. {
  12228. SendChat("/r HQ: Ich befinde mich derzeit in " zone ".")
  12229. }
  12230. else
  12231. {
  12232. SendChat("/r HQ: Ich befinde mich derzeit in " zone ", " city "")
  12233. }
  12234. }
  12235. return
  12236.  
  12237. ?:
  12238. if(IsDialogOpen() == 1 || IsChatOpen() == 1)
  12239. {
  12240. return
  12241. }
  12242. GetPlayerName(Name)
  12243. Carid := GetVehicleModelId()
  12244. if (IsPlayerInAnyVehicle() == 1){
  12245. SendChat("/hq Wagen " Carid " ?ernimmt den Auftrag.")
  12246. }else{
  12247. SendChat("/hq " name " ?ernimmt den Auftrag.")
  12248. }
  12249. Soundplay, avixa.avi
  12250. return
  12251.  
  12252. !?:
  12253. if(IsDialogOpen() == 1 || IsChatOpen() == 1)
  12254. {
  12255. return
  12256. }
  12257. GetPlayerName(Name)
  12258. if (IsPlayerInAnyVehicle() == 1){
  12259. SendChat("/hq Wagen " GetVehicleModelId() " hat den Auftrag ausgef?rt.")
  12260. }else{
  12261. SendChat("/hq " name " hat den Auftrag ausgef?rt.")
  12262. }
  12263. return
  12264.  
  12265. ^?:
  12266. if(IsDialogOpen() == 1 || IsChatOpen() == 1)
  12267. {
  12268. return
  12269. }
  12270. GetPlayerName(Name)
  12271. if (IsPlayerInAnyVehicle() == 1){
  12272. SendChat("/d [HQ]: Wagen " GetVehicleHealth() " ?ernimmt den Auftrag.")
  12273. }else{
  12274. SendChat("/d [HQ]: " name " ?ernimmt den Auftrag.")
  12275. }
  12276. return
  12277.  
  12278. !^?:
  12279. if(IsDialogOpen() == 1 || IsChatOpen() == 1)
  12280. {
  12281. return
  12282. }
  12283. GetPlayerName(Name)
  12284. if (IsPlayerInAnyVehicle() == 1){
  12285. SendChat("/d [HQ]: Wagen " GetVehicleHealth() " hat den Auftrag ausgef?rt.")
  12286. }else{
  12287. SendChat("/d [HQ]: " name " hat den Auftrag ausgef?rt.")
  12288. }
  12289. return
  12290.  
  12291.  
  12292.  
  12293.  
  12294.  
  12295.  
  12296.  
  12297.  
  12298.  
  12299.  
  12300. :?:/copstats::
  12301. Suspend Permit
  12302. Send, {Enter}
  12303. Sleep, 500
  12304. IniRead, Punkte, Statistik.ini, Vergaben, Punkte
  12305. IniRead, Tickets, Statistik.ini, Vergaben, Tickets
  12306. IniRead, TicketGeld, Statistik.ini, Vergaben, TicketGeld
  12307. IniRead, Tazer, Statistik.ini, Tazer, Tazer
  12308. IniRead, OffArrest, Statistik.ini, Arrests, OffArrest
  12309. IniRead, Arrest, Statistik.ini, Arrests, Arrest
  12310. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12311. IniRead, Kills, Statistik.ini, Kills, Kills
  12312. IniRead, Deaths, Statistik.ini, deaths, Deaths
  12313. IniRead, VerbrecherKills, Statistik.ini, VerbrecherKills, VerbrecherKills
  12314. IniRead, DeathArrest, Statistik.ini, Arrests, DeathArrest
  12315. IniRead, Money, Statistik.ini, Arrests, Money
  12316. IniRead, Flugschein, Statistik.ini, Scheine, Flugschein
  12317. IniRead, Waffenschein, Statistik.ini, Scheine, Waffenschein
  12318. IniRead, Bootschein, Statistik.ini, Scheine, Bootschein
  12319.  
  12320.  
  12321. if(Punkte = "ERROR")
  12322. {
  12323. Punkte = 0
  12324. }
  12325. if(Tickets = "ERROR")
  12326. {
  12327. Tickets = 0
  12328. }
  12329. if(TicketGeld = "ERROR")
  12330. {
  12331. TicketGeld = 0
  12332. }
  12333. if(Tazer = "ERROR")
  12334. {
  12335. Tazer = 0
  12336. }
  12337. if(OffArrest = "ERROR")
  12338. {
  12339. OffArrest = 0
  12340. }
  12341. if(Arrest = "ERROR")
  12342. {
  12343. Arrest = 0
  12344. }
  12345. if(DeathArrest = "ERROR")
  12346. {
  12347. DeathArrest = 0
  12348. }
  12349. if(Wanted = "ERROR")
  12350. {
  12351. Wanted = 0
  12352. }
  12353. if(Deaths = "ERROR")
  12354. {
  12355. Deaths = 0
  12356. }
  12357. if(Kills = "ERROR")
  12358. {
  12359. Kills = 0
  12360. }
  12361. if(VerbrecherKills = "ERROR")
  12362. {
  12363. VerbrecherKills = 0
  12364. }
  12365. if(Money = "ERROR")
  12366. {
  12367. Money = 0
  12368. }
  12369. if(Flugschein = "ERROR")
  12370. {
  12371. Flugschein = 0
  12372. }
  12373. if(Waffenschein = "ERROR")
  12374. {
  12375. Waffenschein = 0
  12376. }
  12377. if(Bootschein = "ERROR")
  12378. {
  12379. Bootschein = 0
  12380. }
  12381.  
  12382. GetCityName(city)
  12383. GetZoneName(zone)
  12384. FPS := GetFramerate()
  12385. AP := GetPlayerArmor()
  12386. HP := GetPlayerHealth()
  12387. GetPlayerName(Name)
  12388. PlayerID := GetPlayerID()
  12389. if(PlayerID != "65535" && PlayerID != "" && PlayerID != "-1")
  12390. {
  12391.  
  12392. stats := "{FF0000}Spieler-Infos:{FFFFFF}`nStandort: {FFBF00}" zone "{FFFFFF}, {FFBF00}" City "`n{FFFFFF}FPS: {FFBF00}" FPS "`n{FFFFFF}Leben: {FFBF00}" HP "{FFFFFF}/{FFBF00}" AP "`nGet?ete Personen: " Kills "`nDeine Tode: " Deaths "`nK/D: " Kills / Deaths "`n`n{FF0000}Cop-Infos:{FFFFFF}`n{FFFFFF}Ausgestellte Wanteds: {FFBF00}" Wanted "{FFFFFF}`n{FFFFFF}Ausgestellte Punkte: {FFBF00}" Punkte "{FFFFFF}`n{FFFFFF}Ausgestellte Tickets: {FFBF00}" Tickets "{FFFFFF} (Verdientes Geld: {FFBF00}" TicketGeld "{FFFFFF}$) `n`nEingesperrte Verbrecher: {FFBF00}" Arrest "{FFFFFF} `nVerdientes Geld: {FFBF00}" Money "{FFFFFF}$`nOffline eingesperrte Verbrecher: {FFBF00}" OffArrest "{FFFFFF}`nGet?ete Verbrecher: {FFBF00}" Kills "{FFFFFF}`nDeath Arrests: {FFBF00}" DeathArrest "{FFFFFF}`n `nGetazerte Personen: {FFBF00}" Tazer "{FFFFFF} `n`n{FF0000}Scheine:{FFFFFF}`nEntzogene Flugscheine: {FFBF00}" Flugschein "{FFFFFF} `nEntzogene Waffenscheine: {FFBF00}" Waffenschein "{FFFFFF} `nEntzogene Bootsscheine: {FFBF00}" Bootschein "{FFFFFF}"
  12393. ShowDialog(0, "{FFFFFF}Copstatistiken ( {FF0000}" Name "{FFFFFF} )", stats, "OK")
  12394. return
  12395.  
  12396. IsNumeric(number)
  12397. {
  12398. url = http://ni31914_1.vweb14.nitrado.net/Keybinder/files/fbibinder/isnumeric.php?number=%number%
  12399. success := UrlDownloadToVar(url)
  12400. return success
  12401. }
  12402. }
  12403.  
  12404.  
  12405.  
  12406. :?:/info::
  12407. Suspend Permit
  12408. IniRead, Kills, Statistik.ini, Kills, Kills
  12409. IniRead, Deaths, Statistik.ini, deaths, Deaths
  12410. GetCityName(city)
  12411. GetZoneName(zone)
  12412. GetPlayerName(Name)
  12413. PlayerID := GetPlayerID()
  12414. if(PlayerID != "65535" && PlayerID != "" && PlayerID != "-1")
  12415. {
  12416. AddChatMessage(0x4B45F, "|Atano-Binder| {FFFFFF}Spieler-Information von {FFBF00}" Name " {FFFFFF}[ID: {FFBF00}" PlayerID "{FFFFFF} ]:")
  12417. }
  12418. else
  12419. {
  12420. AddChatMessage(0x4B45F, "|Atano-Binder| {FFFFFF}Spieler-Information von {FFBF00}" Name "{FFFFFF}:")
  12421. }
  12422. AddChatMessage(0x4B45F, "|Atano-Binder| {FFFFFF}HP: {FFBF00}" GetPlayerHealth() " {FFFFFF}Armor: {FFBF00}" GetPlayerArmor() "{FFFFFF}, Standort: {FFBF00}" zone ", " city "{FFFFFF}.")
  12423. AddChatMessage(0x4B45F, "|Atano-Binder| {FFFFFF}Kills: {FFBF00}" Kills "{FFFFFF} Deaths: {FFBF00}" Deaths " {FFFFFF} K/D-Rate: {FFBF00}" Kills/Deaths "{FFFFFF}.")
  12424. if (IsPlayerInAnyVehicle() == 1)
  12425. {
  12426. GetVehicleModelName(Fahrzeug)
  12427. AddChatMessage(0x4B45F, "|Atano-Binder| {FFFFFF}Fahrzeug-Information f? das Fahrzeug {FFBF00}" Fahrzeug "{FFFFFF}:")
  12428. if(GetVehicleSecondColor() != -1 && GetVehicleSecondColor() != "")
  12429. {
  12430. AddChatMessage(0x4B45F, "|Atano-Binder| {FFFFFF}Farbe: {FFBF00}"GetVehicleFirstColor() "{FFFFFF} / {FFBF00}" GetVehicleSecondColor() "{FFFFFF}, CarDL: {FFBF00}" GetVehicleHealth() "{FFFFFF}.")
  12431. }
  12432. else
  12433. AddChatMessage(0x4B45F, "|Atano-Binder| {FFFFFF}Farbe: {FFBF00}"GetVehicleFirstColor() "{FFFFFF}, CarDL: {FFBF00}" GetVehicleHealth() "{FFFFFF}.")
  12434. }
  12435. return
  12436.  
  12437. :?:/rmpos::
  12438. Suspend Permit
  12439. exe := OpenMemoryfromTitle_("GTA:SA:MP")
  12440. posX := ReadMemory_(exe,0xC7DEC8,"Float")
  12441. posY := ReadMemory_(exe,0xC7DECC,"Float")
  12442. posZ := ReadMemory_(exe, 0xC7DED0,"Float")
  12443. CloseMemory_(exe)
  12444. posX := Floor(posX)
  12445. posY := Floor(posY)
  12446. posZ := Floor(posZ)
  12447. Zone := GetZoneByCoords(posX, posY, posZ)
  12448. City := GetCityByCoords(posX, posY, posZ)
  12449. Entfernung := GetDistanceFromPoint(posX, posY, posZ)
  12450. AddChatMessage(0x088A85, "|Atano-Binder| {FFFFFF}Position: {DBA901}" . Zone . "{FFFFFF}, {DBA901}" . City . "{FFFFFF}.")
  12451. AddChatMessage(0x088A85, "|Atano-Binder| {FFFFFF}Entfernung: {FFBF00}" . Entfernung . "{FFFFFF} Meter.")
  12452. return
  12453.  
  12454. :?:/setkills::
  12455. Suspend Permit
  12456. kills := PlayerInput("Aktuelle Kills: ")
  12457. Iniwrite, %kills%, Statistik.ini, Kills, kills
  12458. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast deine Kills auf {FFBF00}" . kills . "{FFFFFF} gesetzt.")
  12459. return
  12460.  
  12461. :?:/setdeaths::
  12462. Suspend Permit
  12463. deaths := PlayerInput("Aktuelle Deaths: ")
  12464. Iniwrite, %Deaths%, Statistik.ini, deaths, Deaths
  12465. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast deine Tode auf {FFBF00}" . Deaths . "{FFFFFF} gesetzt.")
  12466. return
  12467.  
  12468.  
  12469. :?:/Befehle::
  12470. Suspend Permit
  12471. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} ---BEFEHLE | Vergaben---")
  12472. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 1 = ATK")
  12473. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 2 = Flucht")
  12474. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 3 = Verweigerung")
  12475. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 4 = BDJ")
  12476. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 5 = Mats")
  12477. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 6 = Drogen")
  12478. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 7 = Beihilfe")
  12479. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 8 = Waffenhandel")
  12480. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} NumPad 9 = Einbruch")
  12481.  
  12482. return
  12483.  
  12484.  
  12485. :?:/zollhelp::
  12486. Suspend Permit
  12487. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} .:: Zoll-Informationen ::.")
  12488. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 1:{FFFFFF} Zollstation von LS-LV (Hitman-Base).")
  12489. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 2:{FFFFFF} Zollstation zwischen Montgomery & Blueberry.")
  12490. AddchatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 3:{FFFFFF} Zollstation zwischen Waldgebiet & Blueberry.")
  12491. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 4:{FFFFFF} Garver Bridge (Br?ke bei FBI Base).")
  12492. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 5:{FFFFFF} Gant Bridge (Rote Br?ke zwischen Tierra & San Fierro).")
  12493. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 6:{FFFFFF} Zollstation Red County- Flint County (Alte GmbH Base).")
  12494. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 7:{FFFFFF} Zollstation von Red County-Flint County (richtung Richmen).")
  12495. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 8:{FFFFFF} Tunnel LS-Flint County (Waffendealer Strecke).")
  12496. AddChatMessage(0x4B45F, "|Atano-Binder|{FFBF00} Zoll 9:{FFFFFF} Zollstation LS-SF (Flint Intersection).")
  12497. return
  12498.  
  12499.  
  12500. Antispamschutz:
  12501. IfWinNotActive, GTA:SA:MP
  12502. return
  12503. GetChatline(1, AntiSpam)
  12504. GetChatline(0, AntiSpam2)
  12505. Antispam := Antispam Antispam2
  12506. If(InStr(AntiSpam, "WARNUNG: H? auf zu Spamen, sonst wirst du gekickt!"))
  12507. {
  12508. BlockChatInput(1)
  12509. AddChatMessage(0xFFFFFF,"{FF8200}[Atano-Binder] {FFFFFF}AntiSpam Schutz aktiviert.")
  12510. Sleep, 1500
  12511. AddChatMessage(0xFFFFFF,"{FF8200}[Atano-Binder] {FFFFFF}AntiSpam Schutz deaktiviert.")
  12512. BlockChatInput(0)
  12513. }
  12514. return
  12515.  
  12516.  
  12517. X::
  12518. if(IsChatOpen() || IsDialogOpen() || IsMenuOpen())
  12519. return
  12520. SendChat("/zoll")
  12521. return
  12522.  
  12523.  
  12524.  
  12525.  
  12526.  
  12527.  
  12528.  
  12529. :?:/togtickets::
  12530. Suspend Permit
  12531. if (TicketOverlay == "0")
  12532. {
  12533. Boxid := BoxCreate(690, 530, 90, 45, 0xDD111314, false)
  12534. BoxSetBorder(Boxid, 3, true)
  12535. BoxSetBorderColor(Boxid, 0xFF000000)
  12536. BoxSetShown(Boxid, true)
  12537. titeltext := TextCreate("Arial", 6, false, false, 692, 532, 0xFF00E1FF, "Ticket Statistik", false, false)
  12538. TextSetShown(titeltext, true)
  12539. tickettext := TextCreate("Arial", 6, false, false, 692, 545, 0xFFFFFFFF, " Lade Statistik...", false, false)
  12540. TextSetShown(tickettext, true)
  12541. TicketOverlay = 1
  12542. SetTimer, TicketUpdate, 4000
  12543. AddChatMessage(0x088A4B, "|Staatsgewalt|{FFFFFF} Ticket-Overlay {00FF00}eingeschaltet{FFFFFF}.")
  12544. }
  12545. else if (TicketOverlay == "1")
  12546. {
  12547. TextDestroy(tickettext)
  12548. TextDestroy(titeltext)
  12549. BoxDestroy(Boxid)
  12550. TicketOverlay = 0
  12551. SetTimer, TicketUpdate, off
  12552. AddChatMessage(0x088A4B, "|Staatsgewalt|{FFFFFF} Ticket-Overlay {FF0000}ausgeschaltet{FFFFFF}.")
  12553. }
  12554. return
  12555.  
  12556. TicketUpdate:
  12557. FormatTime, MonatSt, YYYYMMDDHH24MISS, MM
  12558. FormatTime, TagSt, YYYYMMDDHH24MISS, dd.MM
  12559. IniRead, Monat, Tickets.ini, TicketM, %MonatSt%
  12560. IniRead, Heute, Tickets.ini, TicketT, %TagSt%
  12561. IniRead, Gesamt, Tickets.ini, Ticket, Gesamt
  12562. if(Monat == "ERROR")
  12563. {
  12564. Monat=0
  12565. }
  12566. if(Heute == "ERROR")
  12567. {
  12568. Heute=0
  12569. }
  12570. if(Gesamt == "ERROR")
  12571. {
  12572. Gesamt=0
  12573. }
  12574. TextSetString(tickettext, "Angenommene Tickets: " . Gesamt . "`n an diesem Tag: " . Heute . "`n in diesem Monat: " . Monat . "")
  12575. return
  12576.  
  12577. :?:/tt::
  12578. Suspend Permit
  12579. FormatTime, Uhrzeit,, HH
  12580. GetPlayerName(Name)
  12581. TicketID := PlayerInput("Ticket-ID: ")
  12582. SendChat("/tt " . TicketID . "")
  12583. if (Uhrzeit >= 12 && Uhrzeit < 20)
  12584. {
  12585. SendChat("/aw " . TicketID . " Guten Tag,")
  12586. }
  12587. else if (Uhrzeit >= 20 || Uhrzeit == 0)
  12588. {
  12589. SendChat("/aw " . TicketID . " Guten Abend,")
  12590. }
  12591. else if (Uhrzeit >= 1 && Uhrzeit < 12)
  12592. {
  12593. SendChat("/aw " . TicketID . " Guten Morgen ,")
  12594. }
  12595. SendChat("/aw " . TicketID . " Mein Name ist " . Name . " und ich bin f? Ihre Fragen oder Probleme offen.")
  12596. Sleep 670
  12597. GetChatLine(0, string)
  12598. GetChatLine(1, string1)
  12599. GetChatLine(2, string2)
  12600. if(Instr(string, "Fragen oder Probleme offen") || InStr(string1, "Fragen oder Probleme offen") || InStr(string2, "Fragen oder Probleme offen"))
  12601. {
  12602. FormatTime, MonatSt, YYYYMMDDHH24MISS, MM
  12603. FormatTime, TagSt, YYYYMMDDHH24MISS, dd.MM
  12604. IniRead, Monat, Tickets.ini, TicketM, %MonatSt%
  12605. IniRead, Heute, Tickets.ini, TicketT, %TagSt%
  12606. IniRead, Gesamt, Tickets.ini, Ticket, Gesamt
  12607. Monat1=%Monat%
  12608. Heute1=%Heute%
  12609. Gesamt1=%Gesamt%
  12610. Sleep, 200
  12611. Monat1++
  12612. Heute1++
  12613. Gesamt1++
  12614. IniWrite, %Monat1%, Tickets.ini, TicketM, %MonatSt%
  12615. IniWrite, %Heute1%, Tickets.ini, TicketT, %TagSt%
  12616. IniWrite, %Gesamt1%, Tickets.ini, Ticket, Gesamt
  12617. }
  12618. return
  12619.  
  12620. :?:/gt::
  12621. Suspend Permit
  12622. FormatTime, Uhrzeit,, HH
  12623. TicketID := PlayerInput("Ticket-ID: ")
  12624. TeamMitglied := PlayerInput("Team-Mitglied: ")
  12625. SendChat("/aw " . TicketID . " Ich werde Sie nun an " TeamMitglied " weiterleiten.")
  12626. if (Uhrzeit >= 20 || Uhrzeit == 0)
  12627. {
  12628. SendChat("/aw " . TicketID . " Sch?en Abend noch.")
  12629. }
  12630. else
  12631. {
  12632. SendChat("/aw " . TicketID . " Sch?en Tag noch.")
  12633. }
  12634. SendChat("/gt " . TicketID . "")
  12635. Sleep, 1500
  12636. SendChat("/a Ticket " TicketID " f? dich " TeamMitglied "")
  12637. return
  12638.  
  12639. :?:/grund::
  12640. Suspend Permit
  12641. TicketID := PlayerInput("Ticket-ID: ")
  12642. SendChat("/aw " . TicketID . " Warum soll ich Sie an das gew?chte Teammitglied weiterleiten?")
  12643. return
  12644.  
  12645. :?:/dt::
  12646. Suspend Permit
  12647. TicketID := PlayerInput("Ticket-ID: ")
  12648. SendChat("/aw " . TicketID . " Ich w?sche Ihnen noch einen sch?en Aufenthalt auf RPG-City")
  12649. SendChat("/aw " . TicketID . " Bei weiteren Fragen melden Sie sich gerne wieder im Ticketsystem")
  12650. SendChat("/dt " . TicketID . "")
  12651. return
  12652.  
  12653. :?:/tafk::
  12654. Suspend Permit
  12655. FormatTime, Uhrzeit,, HH
  12656. TicketID := PlayerInput("Ticket-ID: ")
  12657. SendChat("/aw " . TicketID . " Ich werde Ihr Ticket nun schlie?n, da Sie scheinbar nicht anwesend sind.")
  12658. Sleep, 1200
  12659. SendChat("/aw " . TicketID . " Bei weiteren Fragen melden Sie sich gerne wieder im Ticketsystem")
  12660. if (Uhrzeit >= 20 || Uhrzeit == 0)
  12661. {
  12662. SendChat("/aw " . TicketID . " Ich w?sche Ihnen noch einen sch?en Rest Abend.")
  12663. }
  12664. else
  12665. {
  12666. SendChat("/aw " . TicketID . " Ich w?sche Ihnen noch einen herzlich sch?en Tag.")
  12667. }
  12668. SendChat("/dt " . TicketID . "")
  12669. return
  12670.  
  12671. :?:/fragen::
  12672. Suspend Permit
  12673. TicketID := PlayerInput("Ticket-ID: ")
  12674. SendChat("/aw " . TicketID . " Haben Sie weitere Fragen, Probleme oder Anliegen?")
  12675. return
  12676.  
  12677. :?:/meldungen::
  12678. Suspend Permit
  12679. SendChat("/announce Bei Fragen zum Server stehen wir Ihnen jederzeit per /sup [Frage] zur Verf?ung.")
  12680. SendChat("/announce Hacker, Buguser und weitere Regelbrecher k?nen per /a gemeldet werden.")
  12681. return
  12682.  
  12683. :?:/rc::
  12684. Suspend Permit
  12685. FahrzeugID := PlayerInput("Fahrzeug-ID: ")
  12686. SendChat("/respawncar " . FahrzeugID . "")
  12687. return
  12688.  
  12689. :?:/adabuse::
  12690. Suspend Permit
  12691. SendInput, /mute 120 Ausnutzung des Werbesystems{left 32}
  12692. return
  12693.  
  12694. :?:/aabuse::
  12695. Suspend Permit
  12696. SendInput, /supban 120 Ausnutzung des Adminchats{left 30}
  12697. return
  12698.  
  12699. :?:/sdm::
  12700. Suspend Permit
  12701. SendInput, /prison 120 Sinnloses Deathmatch{left 25}
  12702. return
  12703.  
  12704. :?:/bansdm::
  12705. Suspend Permit
  12706. SendInput, /ban Sinnloses Deathmatch mit Level 1{left 33}
  12707. return
  12708.  
  12709. :?:/jobst?ung::
  12710. Suspend Permit
  12711. SendInput, /prison 120 Jobstì² rung{left 15}
  12712. return
  12713.  
  12714. :?:/jobdm::
  12715. Suspend Permit
  12716. SendInput, /prison 120 Job Deathmatch{left 19}
  12717. return
  12718.  
  12719. :?:/intflucht::
  12720. Suspend Permit
  12721. SendInput, /prison 120 Interrior-Flucht{left 21}
  12722. return
  12723.  
  12724. :?:/escflucht::
  12725. Suspend Permit
  12726. SendInput, /prison 120 ESC-Flucht{left 25}
  12727. return
  12728.  
  12729. :?:/offflucht::
  12730. Suspend Permit
  12731. SendInput, /prison 120 Offline-Flucht{left 19}
  12732. return
  12733.  
  12734. :?:/cardm::
  12735. Suspend Permit
  12736. SendInput, /prison 120 Carsurf DM{left 15}
  12737. return
  12738.  
  12739. :?:/spam::
  12740. Suspend Permit
  12741. SendInput /mute 120 Spam{left 9}
  12742. return
  12743.  
  12744. :?:/esccp::
  12745. Suspend Permit
  12746. SendInput /kick ESC im Checkpoint{left 18}
  12747. return
  12748.  
  12749. :?:/afkp::
  12750. Suspend Permit
  12751. SendInput /kick AFK im Paintball{left 17}
  12752. return
  12753.  
  12754. :?:/anfahren::
  12755. Suspend Permit
  12756. SendInput /prison 120 Absichtliches Anfahren{left 27}
  12757. return
  12758.  
  12759. :?:/nodm::
  12760. Suspend Permit
  12761. SendInput /prison 120 Deathmatch in einer No DM Zone{left 35}
  12762. return
  12763.  
  12764. :?:/tv::
  12765. Suspend Permit
  12766. SendInput, /tv{space}
  12767. Input, TVID, V I M,{enter}
  12768. SendChat("/id " TVID "")
  12769. return
  12770.  
  12771. :?:/tickets::
  12772. Suspend Permit
  12773. GetPlayerName(Supporter)
  12774. SendInput ^a{delete}{enter}
  12775. FormatTime, MonatSt, YYYYMMDDHH24MISS, MM
  12776. FormatTime, TagSt, YYYYMMDDHH24MISS, dd.MM
  12777. IniRead, Monat, Tickets.ini, TicketM, %MonatSt%
  12778. IniRead, Heute, Tickets.ini, TicketT, %TagSt%
  12779. IniRead, Gesamt, Tickets.ini, Ticket, Gesamt
  12780. if(Monat == "ERROR")
  12781. {
  12782. Monat=0
  12783. }
  12784. if(Heute == "ERROR")
  12785. {
  12786. Heute=0
  12787. }
  12788. if(Gesamt == "ERROR")
  12789. {
  12790. Gesamt=0
  12791. }
  12792. Sleep, 100
  12793. ShowDialog(0, "Ticket Statistik (" Supporter ")" , "Angenommene Tickets: " Gesamt "`nan diesem Tag: " Heute "`nin diesem Monat: " Monat, "schlie?n")
  12794. return
  12795.  
  12796. :?:/na::
  12797. Suspend, Permit
  12798. VerbrecherID := PlayerInput("Notrufmissbrauch: ")
  12799. FormatTime, Zeit, , HH:mm
  12800. SendChat("/suspect " . VerbrecherID . " Missbrauch des Notrufes - " Zeit " Uhr")
  12801. SendChat("/suspect " . VerbrecherID . " Behinderung der Justiz - " Zeit " Uhr")
  12802. if(id != "")
  12803. {
  12804. Sleep, 200
  12805. GetChatLine(0, chat)
  12806. GetPlayerName(Name)
  12807. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12808. {
  12809. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12810. Wanted+=2
  12811. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12812. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12813. }
  12814. }
  12815. return
  12816.  
  12817.  
  12818.  
  12819. :?:/zf::
  12820. VerbrecherID := PlayerInput("Zollflucht: ")
  12821. FormatTime, Zeit, , HH:mm
  12822. SendChat("/suspect " . VerbrecherID . " Zollflucht - " Zeit " Uhr")
  12823. SendChat("/suspect " . VerbrecherID . " Zollflucht - " Zeit " Uhr")
  12824. if(id != "")
  12825. {
  12826. Sleep, 200
  12827. GetChatLine(0, chat)
  12828. GetPlayerName(Name)
  12829. If(InStr(chat, "[WANTED] Verd?htiger: ") && InStr(chat, "Zeuge: " Name ","))
  12830. {
  12831. IniRead, Wanted, Statistik.ini, Vergaben, Wanted
  12832. Wanted+=2
  12833. IniWrite, %Wanted%, Statistik.ini, Vergaben, Wanted
  12834. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} Du hast bereits {FFBF00}" . Wanted . "{FFFFFF} Wanteds ausgestellt.")
  12835. }
  12836. }
  12837. return
  12838.  
  12839.  
  12840. :?:/bel::
  12841. Suspend Permit
  12842. SendInput /mute 120 Beleidigung{left 9}
  12843. return
  12844.  
  12845. :?:/mbel::
  12846. Suspend Permit
  12847. Spieler := PlayerInput("Wenn willst du Sanktionieren? (ID): ")
  12848. SendChat("/mute " . Spieler . "120 Mittlere Beleidigung")
  12849. Sleep, 1000
  12850. SendChat("/tban " . Spieler . " 24 Mittlere Beleidigung")
  12851. return
  12852.  
  12853.  
  12854. :?:/sbel::
  12855. Suspend Permit
  12856. Spieler := PlayerInput("ID:")
  12857. SendChat("/mute " . Spieler . " 120 Schwere Beleidigung")
  12858. SendChat("/warn " . Spieler . " Schwere Beleidigung")
  12859. SendChat("/tban " . Spieler . " 168 Schwere Beleidigung")
  12860. return
  12861.  
  12862.  
  12863. :?:/abhelp::
  12864. Suspend, Permit
  12865. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /tt = Ticket annehmen")
  12866. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /dt = Ticker schlie?n")
  12867. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /gt = Ticket weiterleiten")
  12868. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /grund = Warum soll ich Sie weiterleiten")
  12869. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /fragen = Weiter Fragen?")
  12870. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /tafk = Ticket wegen AFK schlie?n")
  12871. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /meldungen = Info ?er /sup und /a")
  12872. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} rc = /respawncar")
  12873. AddChatMessage(0d4B45F, "|Atano-Binder|{FFFFFF} -------------------")
  12874. AddChatMessage(0x4B45F, "|Atano-Binder|{FF0000} ---Sanktionen ---")
  12875. sleep, 1500
  12876. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /adabuse - Ad Abuse")
  12877. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /aabuse - /A Abuse")
  12878. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /bel = Beleidigung")
  12879. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /mbel = Mttlere Beleidigung")
  12880. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /sbel = Schwere Beleidigung")
  12881. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /sdm = Prison wegen SDM")
  12882. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /bansdm - Ban wegen SDM (Level 1)")
  12883. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /nodm = Dm in No DM Zone")
  12884. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /jobst?ung = Jobst?ung")
  12885. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /jobdm = Job DM")
  12886. AddChatMessage(0x4B45F, "|Atano-Binder|{FFFFFF} /intflucht = Interrior Flucht")
  12887. return
  12888.  
  12889.  
  12890. :?:/GOVBW::
  12891. Suspend Permit
  12892. SendChat("/gov FBI - Bewerbungsank?digung -")
  12893. SendChat("/gov Das FBI sucht bis zu 10 Member, Bewerbungen kommen in das Control Panel")
  12894. SendChat("/gov Bitte nur Bewerben wenn auch alle Voraussetzungen erf?lt werden.")
  12895. SendChat("/gov Viel Gl?k")
  12896. return
  12897.  
  12898. :?:/Blitz::
  12899. Suspend Permit
  12900. SendChat("/gov Es findet eine Blitzbewerbungsrunde im FBI statt")
  12901. SendChat("/gov Anw?ter bitte in den SAPD Public Relations (SAPD ?fentlich) Channel. Hinter den Namen bitte ein /FBI")
  12902. sleep 1000
  12903. SendChat("/gov Es m?sen alle Voraussetzungen eingehalten werden")
  12904. SendChat("/gov Die Bewerbungsrunde startet um 16:45 Uhr")
  12905. sleep 1000
  12906. SendChat("/gov Bitte ein Screenshot der Statistik bereithalten!")
  12907.  
  12908. SendChat("/gov Das FBI w?scht viel Gl?k!")
  12909. return
  12910.  
  12911.  
  12912. :?:/Einsatz::
  12913. Suspend Permit
  12914. Uhrzeit := PlayerInput("Uhrzeit: ")
  12915. Ort := PlayerInput("Wo?: ")
  12916. Opfer := PlayerInput("Der/Die/Das: ")
  12917. SendChat("/R --- Einsatz Ank?digung ---")
  12918. SendChat("/R Einsatz, alle in " . Opfer . " " . Ort . " aufstellen, Zeit bis " . Uhrzeit . " Uhr")
  12919. SendChat("/R Einsatz Ank?digung - Ende")
  12920. return
  12921.  
  12922.  
  12923. :?:/Sultan::
  12924. Suspend Permit
  12925. SendChat("/r Fordere Sultan?ersicht")
  12926. SendChat("/r Bitte das Kennzeichen in den F-Chat")
  12927. return
  12928.  
  12929.  
  12930. :?:/gk::
  12931. Suspend Permit
  12932. params1 := PlayerInput("Geb?dekomplex: ")
  12933. if(params1 == 1.67){
  12934. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  12935. }
  12936. if(params1 == 1.66){
  12937. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  12938. }
  12939. if(params1 == 2.65){
  12940. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  12941. }
  12942. if(params1 == 2.64){
  12943. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  12944. }
  12945. if(params1 == 3.135){
  12946. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  12947. }
  12948. if(params1 == 3.134){
  12949. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  12950. }
  12951. if(params1 == 2.133){
  12952. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  12953. }
  12954. if(params1 == 1.42){
  12955. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12956. }
  12957. if(params1 == 1.43){
  12958. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12959. }
  12960. if(params1 == 1.44){
  12961. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12962. }
  12963. if(params1 == 1.45){
  12964. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12965. }
  12966. if(params1 == 1.46){
  12967. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12968. }
  12969. if(params1 == 1.47){
  12970. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12971. }
  12972. if(params1 == 1.48){
  12973. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12974. }
  12975. if(params1 == 1.49){
  12976. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12977. }
  12978. if(params1 == 1.94){
  12979. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  12980. }
  12981. if(params1 == 1.59){
  12982. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  12983. }
  12984. if(params1 == 1.58){
  12985. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  12986. }
  12987. if(params1 == 1.57){
  12988. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  12989. }
  12990. if(params1 == 1.56){
  12991. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  12992. }
  12993. if(params1 == 1.55){
  12994. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  12995. }
  12996. if(params1 == 1.54){
  12997. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  12998. }
  12999. if(params1 == 1.53){
  13000. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13001. }
  13002. if(params1 == 1.52){
  13003. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13004. }
  13005. if(params1 == 1.51){
  13006. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13007. }
  13008. if(params1 == 1.50){
  13009. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13010. }
  13011. if(params1 == 2.70){
  13012. AddChatMessage(0xFFFFFF,"{FF0000}Las Colinas, Los Santos")
  13013. }
  13014. if(params1 == 4.69){
  13015. AddChatMessage(0xFFFFFF,"{FF0000}Las Colinas, Los Santos")
  13016. }
  13017. if(params1 == 3.68){
  13018. AddChatMessage(0xFFFFFF,"{FF0000}Las Colinas, Los Santos")
  13019. }
  13020. if(params1 == 15.152){
  13021. AddChatMessage(0xFFFFFF,"{FF0000}East Los Santos, Los Santos")
  13022. }
  13023. if(params1 == 6.132){
  13024. AddChatMessage(0xFFFFFF,"{FF0000}East Beach, Los Santos")
  13025. }
  13026. if(params1 == 1.1430){
  13027. AddChatMessage(0xFFFFFF,"{FF0000}Presidenten Shamal")
  13028. }
  13029. if(params1 == 1.1073){
  13030. AddChatMessage(0xFFFFFF,"{FF0000}Kaufbare Shamal, Los Santos")
  13031. }
  13032. if(params1 == 7.27){
  13033. AddChatMessage(0xFFFFFF,"{FF0000}Haus neber SH, Los Santos")
  13034. }
  13035. if(params1 == 3.149){
  13036. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13037. }
  13038. if(params1 == 2.148){
  13039. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13040. }
  13041. if(params1 == 2.147){
  13042. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13043. }
  13044. if(params1 == 2.146){
  13045. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13046. }
  13047. if(params1 == 3.145){
  13048. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13049. }
  13050. if(params1 == 2.144){
  13051. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13052. }
  13053. if(params1 == 12.8){
  13054. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt (Villa), Los Santos")
  13055. }
  13056. if(params1 == 2.127){
  13057. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13058. }
  13059. if(params1 == 5.18){
  13060. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Madd Dog Villa), Los Santos")
  13061. }
  13062. if(params1 == 2.62){
  13063. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Ufo Haus), Los Santos")
  13064. }
  13065. if(params1 == 2.128){
  13066. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13067. }
  13068. if(params1 == 4.9){
  13069. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13070. }
  13071. if(params1 == 15.61){
  13072. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13073. }
  13074. if(params1 == 2.129){
  13075. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Holzhaus), Los Santos")
  13076. }
  13077. if(params1 == 2.10){
  13078. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13079. }
  13080. if(params1 == 2.11){
  13081. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13082. }
  13083. if(params1 == 2.13){
  13084. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13085. }
  13086. if(params1 == 3.12){
  13087. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13088. }
  13089. if(params1 == 5.154){
  13090. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Neben der Temple Tanke), Los Santos")
  13091. }
  13092. if(params1 == 2.131){
  13093. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13094. }
  13095. if(params1 == 2.130){
  13096. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13097. }
  13098. if(params1 == 6.92){
  13099. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13100. }
  13101. if(params1 == 2.93){
  13102. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13103. }
  13104. if(params1 == 2.150){
  13105. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13106. }
  13107. if(params1 == 3.91){
  13108. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13109. }
  13110. if(params1 == 2.151){
  13111. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13112. }
  13113. if(params1 == 12.137){
  13114. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Villa), Los Santos")
  13115. }
  13116. if(params1 == 12.138){
  13117. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Villa), Los Santos")
  13118. }
  13119. if(params1 == 12.139){
  13120. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13121. }
  13122. if(params1 == 4.63){
  13123. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13124. }
  13125. if(params1 == 2.60){
  13126. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13127. }
  13128. if(params1 == 2.146){
  13129. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13130. }
  13131. if(params1 == 7.40){
  13132. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13133. }
  13134. if(params1 == 2.142){
  13135. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13136. }
  13137. if(params1 == 10.7){
  13138. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  13139. }
  13140. if(params1 == 3.141){
  13141. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13142. }
  13143. if(params1 == 7.39){
  13144. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  13145. }
  13146. if(params1 == 5.38){
  13147. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  13148. }
  13149. if(params1 == 5.37){
  13150. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  13151. }
  13152. if(params1 == 7.136){
  13153. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  13154. }
  13155. if(params1 == 12.14){
  13156. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  13157. }
  13158. if(params1 == 2.15){
  13159. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13160. }
  13161. if(params1 == 2.140){
  13162. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13163. }
  13164. if(params1 == 5.41){
  13165. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13166. }
  13167. if(params1 == 3.185){
  13168. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13169. }
  13170. if(params1 == 3.187){
  13171. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13172. }
  13173. if(params1 == 1.0){
  13174. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  13175. }
  13176. if(params1 == 6.2){
  13177. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  13178. }
  13179. if(params1 == 2.3){
  13180. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  13181. }
  13182. if(params1 == 4.1){
  13183. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  13184. }
  13185. if(params1 == 3.4){
  13186. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  13187. }
  13188. if(params1 == 1.5){
  13189. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  13190. }
  13191. if(params1 == 1.6){
  13192. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  13193. }
  13194. if(params1 == 3.216){
  13195. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  13196. }
  13197. if(params1 == 3.217){
  13198. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  13199. }
  13200. if(params1 == 3.74){
  13201. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  13202. }
  13203. if(params1 == 3.75){
  13204. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  13205. }
  13206. if(params1 == 3.183){
  13207. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  13208. }
  13209. if(params1 == 2.178){
  13210. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  13211. }
  13212. if(params1 == 3.186){
  13213. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  13214. }
  13215. if(params1 == 3.179){
  13216. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  13217. }
  13218. if(params1 == 6.176){
  13219. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  13220. }
  13221. if(params1 == 3.184){
  13222. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  13223. }
  13224. if(params1 == 1.192){
  13225. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Blueberry, Los Santos")
  13226. }
  13227. if(params1 == 1.191){
  13228. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Blueberry, Los Santos")
  13229. }
  13230. if(params1 == 2.181){
  13231. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Fern Ridge, Los Santos (Holzh?te im Wald gegen?er von GF Bauernhof)")
  13232. }
  13233. if(params1 == 4.195){
  13234. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Red County, Los Santos (Bauernhof neben der Autobahn LS-LV)")
  13235. }
  13236. if(params1 == 4.180){
  13237. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13238. }
  13239. if(params1 == 2.199){
  13240. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13241. }
  13242. if(params1 == 4.158){
  13243. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13244. }
  13245. if(params1 == 4.155){
  13246. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13247. }
  13248. if(params1 == 2.157){
  13249. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13250. }
  13251. if(params1 == 3.160){
  13252. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13253. }
  13254. if(params1 == 3.159){
  13255. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13256. }
  13257. if(params1 == 2.177){
  13258. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13259. }
  13260. if(params1 == 12.174){
  13261. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13262. }
  13263. if(params1 == 10.175){
  13264. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13265. }
  13266. if(params1 == 6.156){
  13267. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13268. }
  13269. if(params1 == 3.182){
  13270. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13271. }
  13272. if(params1 == 2.198){
  13273. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  13274. }
  13275. if(params1 == 2.23){
  13276. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13277. }
  13278. if(params1 == 2.24){
  13279. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13280. }
  13281. if(params1 == 2.25){
  13282. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13283. }
  13284. if(params1 == 2.26){
  13285. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13286. }
  13287. if(params1 == 2.35){
  13288. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13289. }
  13290. if(params1 == 2.34){
  13291. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13292. }
  13293. if(params1 == 2.33){
  13294. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13295. }
  13296. if(params1 == 2.32){
  13297. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  13298. }
  13299. if(params1 == 2.30){
  13300. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13301. }
  13302. if(params1 == 2.31){
  13303. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13304. }
  13305. if(params1 == 2.29){
  13306. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13307. }
  13308. if(params1 == 2.28){
  13309. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13310. }
  13311. if(params1 == 2.19){
  13312. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13313. }
  13314. if(params1 == 2.20){
  13315. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13316. }
  13317. if(params1 == 2.21){
  13318. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13319. }
  13320. if(params1 == 2.22){
  13321. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  13322. }
  13323. if(params1 == 4.197){
  13324. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple (gegen?er vom Friedhof), Los Santos")
  13325. }
  13326. if(params1 == 6.88){
  13327. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  13328. }
  13329. if(params1 == 3.87){
  13330. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  13331. }
  13332. if(params1 == 2.89){
  13333. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  13334. }
  13335. if(params1 == 2.90){
  13336. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  13337. }
  13338. if(params1 == 6.27){
  13339. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Comerce (Haus neben der Stadthalle), Los Santos")
  13340. }
  13341. if(params1 == 1.102){
  13342. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13343. }
  13344. if(params1 == 1.101){
  13345. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13346. }
  13347. if(params1 == 1.99){
  13348. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13349. }
  13350. if(params1 == 1.110){
  13351. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13352. }
  13353. if(params1 == 1.109){
  13354. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13355. }
  13356. if(params1 == 1.108){
  13357. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13358. }
  13359. if(params1 == 1.107){
  13360. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13361. }
  13362. if(params1 == 1.118){
  13363. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13364. }
  13365. if(params1 == 1.117){
  13366. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13367. }
  13368. if(params1 == 1.116){
  13369. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13370. }
  13371. if(params1 == 1.115){
  13372. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13373. }
  13374. if(params1 == 1.126){
  13375. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13376. }
  13377. if(params1 == 1.125){
  13378. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13379. }
  13380. if(params1 == 1.124){
  13381. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13382. }
  13383. if(params1 == 1.23){
  13384. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  13385. }
  13386. if(params1 == 1.121){
  13387. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13388. }
  13389. if(params1 == 1.122){
  13390. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13391. }
  13392. if(params1 == 1.19){
  13393. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13394. }
  13395. if(params1 == 1.120){
  13396. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13397. }
  13398. if(params1 == 1.112){
  13399. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13400. }
  13401. if(params1 == 1.111){
  13402. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13403. }
  13404. if(params1 == 1.114){
  13405. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13406. }
  13407. if(params1 == 1.113){
  13408. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13409. }
  13410. if(params1 == 1.103){
  13411. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13412. }
  13413. if(params1 == 1.104){
  13414. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13415. }
  13416. if(params1 == 1.106){
  13417. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13418. }
  13419. if(params1 == 1.105){
  13420. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13421. }
  13422. if(params1 == 1.97){
  13423. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13424. }
  13425. if(params1 == 1.98){
  13426. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13427. }
  13428. if(params1 == 1.95){
  13429. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13430. }
  13431. if(params1 == 1.96){
  13432. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  13433. }
  13434. if(params1 == 5.1){
  13435. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Pizza Laden in Ganton, Los Santos")
  13436. }
  13437. if(params1 == 9.3){
  13438. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell Ganton, Los Santos")
  13439. }
  13440. if(params1 == 15.3){
  13441. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco Ganton, Los Santos")
  13442. }
  13443. if(params1 == 15.12){
  13444. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco an der Ballas Base, Los Santos")
  13445. }
  13446. if(params1 == 15.4){
  13447. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco Downtown, Los Santos")
  13448. }
  13449. if(params1 == 10.2){
  13450. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Tankstelle Temple, Los Santos")
  13451. }
  13452. if(params1 == 20.1){
  13453. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bank, Los Santos")
  13454. }
  13455. if(params1 == 10.3){
  13456. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN, Los Santos")
  13457. }
  13458. if(params1 == 10.10){
  13459. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSS, Los Santos")
  13460. }
  13461. if(params1 == 9.2){
  13462. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell Market, Los Santos")
  13463. }
  13464. if(params1 == 15.0){
  13465. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Rodeo Binco, Los Santos")
  13466. }
  13467. if(params1 == 15.11){
  13468. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Rodeo Binco, Los Santos")
  13469. }
  13470. if(params1 == 10.13){
  13471. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 an der Statdhalle, Los Santos")
  13472. }
  13473. if(params1 == 17.0){
  13474. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Alhambra, Los Santos")
  13475. }
  13476. if(params1 == 1.0){
  13477. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ammu, Los Santos")
  13478. }
  13479. if(params1 == 10.15){
  13480. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Dillimore, Los Santos")
  13481. }
  13482. if(params1 == 10.14){
  13483. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Palomino Creek, Los Santos")
  13484. }
  13485. if(params1 == 5.4){
  13486. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Pizza Laden Palomino Creek, Los Santos")
  13487. }
  13488. if(params1 == 10.1){
  13489. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Noob Spawn, Los Santos")
  13490. }
  13491. if(params1 == 10.2){
  13492. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Burger Short Garcia, San Fiero")
  13493. }
  13494. if(params1 == 3.170){
  13495. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  13496. }
  13497. if(params1 == 3.78){
  13498. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  13499. }
  13500. if(params1 == 2.77){
  13501. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  13502. }
  13503. if(params1 == 2.76){
  13504. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  13505. }
  13506. if(params1 == 9.11){
  13507. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats (Cluckin Bell), San Fiero")
  13508. }
  13509. if(params1 == 7.209){
  13510. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  13511. }
  13512. if(params1 == 3.219){
  13513. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  13514. }
  13515. if(params1 == 6.188){
  13516. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  13517. }
  13518. if(params1 == 7.80){
  13519. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  13520. }
  13521. if(params1 == 15.17){
  13522. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jumper Hill, San Fiero")
  13523. }
  13524. if(params1 == 10.11){
  13525. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jumper Hill, San Fiero")
  13526. }
  13527. if(params1 == 2.79){
  13528. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Calton Hights, San Fiero")
  13529. }
  13530. if(params1 == 5.81){
  13531. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Calton Hights (Kringelsra?), San Fiero")
  13532. }
  13533. if(params1 == 15.6){
  13534. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Binco, San Fiero")
  13535. }
  13536. if(params1 == 10.1){
  13537. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Burger Shot, San Fiero")
  13538. }
  13539. if(params1 == 9.1){
  13540. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Cluckin Bell, San Fiero")
  13541. }
  13542. if(params1 == 10.1){
  13543. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown, San Fiero")
  13544. }
  13545. if(params1 == 20.2){
  13546. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Bank, San Fiero")
  13547. }
  13548. if(params1 == 7.227){
  13549. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Chinatown, San Fiero")
  13550. }
  13551. if(params1 == 9.8){
  13552. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Angel Pine Cluckin Bell, San Fiero")
  13553. }
  13554. if(params1 == 4.0){
  13555. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ammu, San Fiero")
  13556. }
  13557. if(params1 == 4.231){
  13558. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Farm ?er den Ls-Sf Tunnel, San Fiero")
  13559. }
  13560. if(params1 == 6.213){
  13561. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whetstone Farm, San Fiero")
  13562. }
  13563. if(params1 == 6.210){
  13564. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Flint County Farm, San Fiero")
  13565. }
  13566. if(params1 == 10.4){
  13567. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whetstone Tankstelle, San Fiero")
  13568. }
  13569. if(params1 == 4.173){
  13570. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Wohnwagensiedlung, San Fiero")
  13571. }
  13572. if(params1 == 6.0){
  13573. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ammu, Las Venturas")
  13574. }
  13575. if(params1 == 12.201){
  13576. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell neben der Yakuza Base, Las Venturas")
  13577. }
  13578. if(params1 == 10.6){
  13579. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Burger Shot neben der Yakuza Base, Las Venturas")
  13580. }
  13581. if(params1 == 10.5){
  13582. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Old Venturas Strip 24/7, Las Venturas")
  13583. }
  13584. if(params1 == 10.7){
  13585. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Neben der Yakuza Base, Las Venturas")
  13586. }
  13587. if(params1 == 20.3){
  13588. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in der Bank, Las Venturas")
  13589. }
  13590. if(params1 == 10.5){
  13591. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  13592. }
  13593. if(params1 == 9.10){
  13594. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  13595. }
  13596. if(params1 == 15.16){
  13597. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  13598. }
  13599. if(params1 == 15.15){
  13600. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  13601. }
  13602. if(params1 == 15.14){
  13603. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  13604. }
  13605. if(params1 == 15.8){
  13606. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco neben den Krankenhaus, Las Venturas")
  13607. }
  13608. if(params1 == 10.9){
  13609. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Burger Shot Redsands East, Las Venturas")
  13610. }
  13611. if(params1 == 1.109){
  13612. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13613. }
  13614. if(params1 == 3.168){
  13615. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13616. }
  13617. if(params1 == 2.86){
  13618. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13619. }
  13620. if(params1 == 1.166){
  13621. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13622. }
  13623. if(params1 == 6.165){
  13624. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13625. }
  13626. if(params1 == 2.164){
  13627. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13628. }
  13629. if(params1 == 1.163){
  13630. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13631. }
  13632. if(params1 == 2.82){
  13633. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13634. }
  13635. if(params1 == 2.167){
  13636. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13637. }
  13638. if(params1 == 2.83){
  13639. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13640. }
  13641. if(params1 == 3.84){
  13642. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13643. }
  13644. if(params1 == 3.85){
  13645. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  13646. }
  13647. if(params1 == 4.211){
  13648. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Prikle Pine, Las Venturas")
  13649. }
  13650. if(params1 == 3.212){
  13651. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Prikle Pine, Las Venturas")
  13652. }
  13653. if(params1 == 15.2){
  13654. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  13655. }
  13656. if(params1 == 9.5){
  13657. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  13658. }
  13659. if(params1 == 10.9){
  13660. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  13661. }
  13662. if(params1 == 15.1){
  13663. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  13664. }
  13665. if(params1 == 5.2){
  13666. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  13667. }
  13668. if(params1 == 10.8){
  13669. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 neben der O-Amt Base, Las Venturas")
  13670. }
  13671. if(params1 == 4.196){
  13672. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  13673. }
  13674. if(params1 == 2.17){
  13675. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  13676. }
  13677. if(params1 == 2.208){
  13678. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  13679. }
  13680. if(params1 == 3.193){
  13681. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  13682. }
  13683. if(params1 == 2.194){
  13684. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  13685. }
  13686. if(params1 == 1.161){
  13687. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Valle Ocultado, Las Venturas")
  13688. }
  13689. if(params1 == 4.153){
  13690. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bayside, Las Venturas")
  13691. }
  13692. if(params1 == 9.7){
  13693. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell Tiera Robada, Las Venturas")
  13694. }
  13695. if(params1 == 2.214){
  13696. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Fort Carson, Las Venturas")
  13697. }
  13698. if(params1 == 6.225){
  13699. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bone County Puff, Las Venturas")
  13700. }
  13701. if(params1 == 5.225){
  13702. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Piligrim, Las Venturas")
  13703. }
  13704. if(params1 == 1.171){
  13705. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Tiera Roba Wunschhaus, Las Venturas")
  13706. }
  13707. if(params1 == 8.206){
  13708. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in S.F.Rifa Base, San Fiero")
  13709. }
  13710. if(params1 == 12.200){
  13711. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Russen Mafia Base, Las Venturas")
  13712. }
  13713. if(params1 == 6.0){
  13714. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Los Santos Polizei, Los Santos")
  13715. }
  13716. if(params1 == 10.0){
  13717. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in FBI, San Fiero")
  13718. }
  13719. if(params1 == 8.207){
  13720. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Los Santos Vagos Base, Los Santos")
  13721. }
  13722. if(params1 == 3.1){
  13723. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Las Venturas Polizei, Las Venturas")
  13724. }
  13725. if(params1 == 3.203){
  13726. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Grove Street Base, Los Santos")
  13727. }
  13728. if(params1 == 5.204){
  13729. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ballas Base, Los Santos")
  13730. }
  13731. if(params1 == 3.0){
  13732. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Stadthalle, Los Santos")
  13733. }
  13734. if(params1 == 5.172){
  13735. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Presidenten Villa, Los Santos")
  13736. }
  13737. if(params1 == 1.224){
  13738. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Triaden Base, San Fiero")
  13739. }
  13740. if(params1 == 10.3){
  13741. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 neben BSN, Los Santos")
  13742. }
  13743. if(params1 == 6.162){
  13744. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Haus neben FFH, Las Venturas")
  13745. }
  13746. if(params1 == 3.189){
  13747. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Haus neben der San News Base, Las Venturas")
  13748. }
  13749. if(params1 == 6.73){
  13750. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  13751. }
  13752. if(params1 == 3.71){
  13753. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  13754. }
  13755. if(params1 == 8.72){
  13756. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  13757. }
  13758. if(params1 == 3.202){
  13759. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in der Hitman Base, Las Venturas")
  13760. }
  13761. if(params1 == 1.201){
  13762. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in der Yakuza Base, Las Venturas")
  13763. }
  13764. if(params1 == 2.190){
  13765. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bayside, Las Venturas")
  13766. }
  13767. if(params1 == 8.205){
  13768. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in der LCM Base, Las Venturas")
  13769. }
  13770. if(params1 == 8.226){
  13771. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Verona Beach, Los Santos")
  13772. }
  13773. if(params1 == 15.9){
  13774. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Rodeo Binco, Los Santos")
  13775. }
  13776. if(params1 == 15.221){
  13777. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  13778. }
  13779. if(params1 == 8.220){
  13780. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  13781. }
  13782. if(params1 == 4.223){
  13783. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  13784. }
  13785. if(params1 == 5.222){
  13786. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  13787. }
  13788. if(params1 == 9.75){
  13789. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befinindet sich in Marina (Jetty Lounge), Los Santos")
  13790. }
  13791. return
  13792.  
  13793. gktimer:
  13794. GetChatLine(0,line)
  13795. if(InStr(line, "Der Spieler befindet sich in Geb?dekomplex"))
  13796. {
  13797. RegExMatch(line,"Der Spieler befindet sich in Geb?dekomplex (.*)",params)
  13798.  
  13799. if(params1 == 1.67){
  13800. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  13801. }
  13802. if(params1 == 1.66){
  13803. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  13804. }
  13805. if(params1 == 2.65){
  13806. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  13807. }
  13808. if(params1 == 2.64){
  13809. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  13810. }
  13811. if(params1 == 3.135){
  13812. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  13813. }
  13814. if(params1 == 3.134){
  13815. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  13816. }
  13817. if(params1 == 2.133){
  13818. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jefferson, Los Santos")
  13819. }
  13820. if(params1 == 1.42){
  13821. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13822. }
  13823. if(params1 == 1.43){
  13824. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13825. }
  13826. if(params1 == 1.44){
  13827. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13828. }
  13829. if(params1 == 1.45){
  13830. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13831. }
  13832. if(params1 == 1.46){
  13833. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13834. }
  13835. if(params1 == 1.47){
  13836. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13837. }
  13838. if(params1 == 1.48){
  13839. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13840. }
  13841. if(params1 == 1.49){
  13842. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13843. }
  13844. if(params1 == 1.94){
  13845. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Unten, Los Santos")
  13846. }
  13847. if(params1 == 1.59){
  13848. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13849. }
  13850. if(params1 == 1.58){
  13851. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13852. }
  13853. if(params1 == 1.57){
  13854. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13855. }
  13856. if(params1 == 1.56){
  13857. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13858. }
  13859. if(params1 == 1.55){
  13860. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13861. }
  13862. if(params1 == 1.54){
  13863. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13864. }
  13865. if(params1 == 1.53){
  13866. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13867. }
  13868. if(params1 == 1.52){
  13869. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13870. }
  13871. if(params1 == 1.51){
  13872. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13873. }
  13874. if(params1 == 1.50){
  13875. AddChatMessage(0xFFFFFF,"{FF0000}Idlewood Apartment Oben, Los Santos")
  13876. }
  13877. if(params1 == 2.70){
  13878. AddChatMessage(0xFFFFFF,"{FF0000}Las Colinas, Los Santos")
  13879. }
  13880. if(params1 == 4.69){
  13881. AddChatMessage(0xFFFFFF,"{FF0000}Las Colinas, Los Santos")
  13882. }
  13883. if(params1 == 3.68){
  13884. AddChatMessage(0xFFFFFF,"{FF0000}Las Colinas, Los Santos")
  13885. }
  13886. if(params1 == 15.152){
  13887. AddChatMessage(0xFFFFFF,"{FF0000}East Los Santos, Los Santos")
  13888. }
  13889. if(params1 == 6.132){
  13890. AddChatMessage(0xFFFFFF,"{FF0000}East Beach, Los Santos")
  13891. }
  13892. if(params1 == 1.1430){
  13893. AddChatMessage(0xFFFFFF,"{FF0000}Presidenten Shamal")
  13894. }
  13895. if(params1 == 1.1073){
  13896. AddChatMessage(0xFFFFFF,"{FF0000}Kaufbare Shamal, Los Santos")
  13897. }
  13898. if(params1 == 7.27){
  13899. AddChatMessage(0xFFFFFF,"{FF0000}Haus neber SH, Los Santos")
  13900. }
  13901. if(params1 == 3.149){
  13902. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13903. }
  13904. if(params1 == 2.148){
  13905. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13906. }
  13907. if(params1 == 2.147){
  13908. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13909. }
  13910. if(params1 == 2.146){
  13911. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13912. }
  13913. if(params1 == 3.145){
  13914. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13915. }
  13916. if(params1 == 2.144){
  13917. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt, Los Santos")
  13918. }
  13919. if(params1 == 12.8){
  13920. AddChatMessage(0xFFFFFF,"{FF0000}Mulholland Vinewood Auffahrt (Villa), Los Santos")
  13921. }
  13922. if(params1 == 2.127){
  13923. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13924. }
  13925. if(params1 == 5.18){
  13926. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Madd Dog Villa), Los Santos")
  13927. }
  13928. if(params1 == 2.62){
  13929. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Ufo Haus), Los Santos")
  13930. }
  13931. if(params1 == 2.128){
  13932. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13933. }
  13934. if(params1 == 4.9){
  13935. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13936. }
  13937. if(params1 == 15.61){
  13938. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13939. }
  13940. if(params1 == 2.129){
  13941. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Holzhaus), Los Santos")
  13942. }
  13943. if(params1 == 2.10){
  13944. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13945. }
  13946. if(params1 == 2.11){
  13947. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13948. }
  13949. if(params1 == 2.13){
  13950. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13951. }
  13952. if(params1 == 3.12){
  13953. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13954. }
  13955. if(params1 == 5.154){
  13956. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Neben der Temple Tanke), Los Santos")
  13957. }
  13958. if(params1 == 2.131){
  13959. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13960. }
  13961. if(params1 == 2.130){
  13962. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13963. }
  13964. if(params1 == 6.92){
  13965. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13966. }
  13967. if(params1 == 2.93){
  13968. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13969. }
  13970. if(params1 == 2.150){
  13971. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13972. }
  13973. if(params1 == 3.91){
  13974. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13975. }
  13976. if(params1 == 2.151){
  13977. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13978. }
  13979. if(params1 == 12.137){
  13980. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Villa), Los Santos")
  13981. }
  13982. if(params1 == 12.138){
  13983. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland(Villa), Los Santos")
  13984. }
  13985. if(params1 == 12.139){
  13986. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13987. }
  13988. if(params1 == 4.63){
  13989. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Mulholland, Los Santos")
  13990. }
  13991. if(params1 == 2.60){
  13992. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13993. }
  13994. if(params1 == 2.146){
  13995. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13996. }
  13997. if(params1 == 7.40){
  13998. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  13999. }
  14000. if(params1 == 2.142){
  14001. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  14002. }
  14003. if(params1 == 10.7){
  14004. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  14005. }
  14006. if(params1 == 3.141){
  14007. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  14008. }
  14009. if(params1 == 7.39){
  14010. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  14011. }
  14012. if(params1 == 5.38){
  14013. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  14014. }
  14015. if(params1 == 5.37){
  14016. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  14017. }
  14018. if(params1 == 7.136){
  14019. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  14020. }
  14021. if(params1 == 12.14){
  14022. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman(Villa), Los Santos")
  14023. }
  14024. if(params1 == 2.15){
  14025. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  14026. }
  14027. if(params1 == 2.140){
  14028. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  14029. }
  14030. if(params1 == 5.41){
  14031. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  14032. }
  14033. if(params1 == 3.185){
  14034. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  14035. }
  14036. if(params1 == 3.187){
  14037. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Richman, Los Santos")
  14038. }
  14039. if(params1 == 1.0){
  14040. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  14041. }
  14042. if(params1 == 6.2){
  14043. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  14044. }
  14045. if(params1 == 2.3){
  14046. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  14047. }
  14048. if(params1 == 4.1){
  14049. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  14050. }
  14051. if(params1 == 3.4){
  14052. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  14053. }
  14054. if(params1 == 1.5){
  14055. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  14056. }
  14057. if(params1 == 1.6){
  14058. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Santa Maria Beach, Los Santos")
  14059. }
  14060. if(params1 == 3.216){
  14061. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  14062. }
  14063. if(params1 == 3.217){
  14064. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  14065. }
  14066. if(params1 == 3.74){
  14067. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  14068. }
  14069. if(params1 == 3.75){
  14070. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  14071. }
  14072. if(params1 == 3.183){
  14073. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  14074. }
  14075. if(params1 == 2.178){
  14076. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  14077. }
  14078. if(params1 == 3.186){
  14079. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  14080. }
  14081. if(params1 == 3.179){
  14082. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  14083. }
  14084. if(params1 == 6.176){
  14085. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  14086. }
  14087. if(params1 == 3.184){
  14088. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Dillimore, Los Santos")
  14089. }
  14090. if(params1 == 1.192){
  14091. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Blueberry, Los Santos")
  14092. }
  14093. if(params1 == 1.191){
  14094. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Blueberry, Los Santos")
  14095. }
  14096. if(params1 == 2.181){
  14097. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Fern Ridge, Los Santos (Holzh?te im Wald gegen?er von GF Bauernhof)")
  14098. }
  14099. if(params1 == 4.195){
  14100. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Red County, Los Santos (Bauernhof neben der Autobahn LS-LV)")
  14101. }
  14102. if(params1 == 4.180){
  14103. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14104. }
  14105. if(params1 == 2.199){
  14106. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14107. }
  14108. if(params1 == 4.158){
  14109. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14110. }
  14111. if(params1 == 4.155){
  14112. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14113. }
  14114. if(params1 == 2.157){
  14115. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14116. }
  14117. if(params1 == 3.160){
  14118. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14119. }
  14120. if(params1 == 3.159){
  14121. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14122. }
  14123. if(params1 == 2.177){
  14124. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14125. }
  14126. if(params1 == 12.174){
  14127. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14128. }
  14129. if(params1 == 10.175){
  14130. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14131. }
  14132. if(params1 == 6.156){
  14133. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14134. }
  14135. if(params1 == 3.182){
  14136. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14137. }
  14138. if(params1 == 2.198){
  14139. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in palomino creek, Los Santos")
  14140. }
  14141. if(params1 == 2.23){
  14142. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14143. }
  14144. if(params1 == 2.24){
  14145. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14146. }
  14147. if(params1 == 2.25){
  14148. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14149. }
  14150. if(params1 == 2.26){
  14151. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14152. }
  14153. if(params1 == 2.35){
  14154. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14155. }
  14156. if(params1 == 2.34){
  14157. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14158. }
  14159. if(params1 == 2.33){
  14160. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14161. }
  14162. if(params1 == 2.32){
  14163. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Oben, Los Santos")
  14164. }
  14165. if(params1 == 2.30){
  14166. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14167. }
  14168. if(params1 == 2.31){
  14169. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14170. }
  14171. if(params1 == 2.29){
  14172. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14173. }
  14174. if(params1 == 2.28){
  14175. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14176. }
  14177. if(params1 == 2.19){
  14178. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14179. }
  14180. if(params1 == 2.20){
  14181. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14182. }
  14183. if(params1 == 2.21){
  14184. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14185. }
  14186. if(params1 == 2.22){
  14187. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple Apartment Unten, Los Santos")
  14188. }
  14189. if(params1 == 4.197){
  14190. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple (gegen?er vom Friedhof), Los Santos")
  14191. }
  14192. if(params1 == 6.88){
  14193. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  14194. }
  14195. if(params1 == 3.87){
  14196. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  14197. }
  14198. if(params1 == 2.89){
  14199. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  14200. }
  14201. if(params1 == 2.90){
  14202. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Temple, Los Santos")
  14203. }
  14204. if(params1 == 6.27){
  14205. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Comerce (Haus neben der Stadthalle), Los Santos")
  14206. }
  14207. if(params1 == 1.102){
  14208. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14209. }
  14210. if(params1 == 1.101){
  14211. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14212. }
  14213. if(params1 == 1.99){
  14214. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14215. }
  14216. if(params1 == 1.110){
  14217. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14218. }
  14219. if(params1 == 1.109){
  14220. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14221. }
  14222. if(params1 == 1.108){
  14223. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14224. }
  14225. if(params1 == 1.107){
  14226. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14227. }
  14228. if(params1 == 1.118){
  14229. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14230. }
  14231. if(params1 == 1.117){
  14232. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14233. }
  14234. if(params1 == 1.116){
  14235. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14236. }
  14237. if(params1 == 1.115){
  14238. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14239. }
  14240. if(params1 == 1.126){
  14241. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14242. }
  14243. if(params1 == 1.125){
  14244. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14245. }
  14246. if(params1 == 1.124){
  14247. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14248. }
  14249. if(params1 == 1.23){
  14250. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Oben, Los Santos")
  14251. }
  14252. if(params1 == 1.121){
  14253. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14254. }
  14255. if(params1 == 1.122){
  14256. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14257. }
  14258. if(params1 == 1.19){
  14259. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14260. }
  14261. if(params1 == 1.120){
  14262. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14263. }
  14264. if(params1 == 1.112){
  14265. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14266. }
  14267. if(params1 == 1.111){
  14268. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14269. }
  14270. if(params1 == 1.114){
  14271. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14272. }
  14273. if(params1 == 1.113){
  14274. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14275. }
  14276. if(params1 == 1.103){
  14277. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14278. }
  14279. if(params1 == 1.104){
  14280. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14281. }
  14282. if(params1 == 1.106){
  14283. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14284. }
  14285. if(params1 == 1.105){
  14286. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14287. }
  14288. if(params1 == 1.97){
  14289. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14290. }
  14291. if(params1 == 1.98){
  14292. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14293. }
  14294. if(params1 == 1.95){
  14295. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14296. }
  14297. if(params1 == 1.96){
  14298. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN Apartment Unten, Los Santos")
  14299. }
  14300. if(params1 == 5.1){
  14301. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Pizza Laden in Ganton, Los Santos")
  14302. }
  14303. if(params1 == 9.3){
  14304. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell Ganton, Los Santos")
  14305. }
  14306. if(params1 == 15.3){
  14307. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco Ganton, Los Santos")
  14308. }
  14309. if(params1 == 15.12){
  14310. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco an der Ballas Base, Los Santos")
  14311. }
  14312. if(params1 == 15.4){
  14313. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco Downtown, Los Santos")
  14314. }
  14315. if(params1 == 10.2){
  14316. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Tankstelle Temple, Los Santos")
  14317. }
  14318. if(params1 == 20.1){
  14319. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bank, Los Santos")
  14320. }
  14321. if(params1 == 10.3){
  14322. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSN, Los Santos")
  14323. }
  14324. if(params1 == 10.10){
  14325. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in BSS, Los Santos")
  14326. }
  14327. if(params1 == 9.2){
  14328. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell Market, Los Santos")
  14329. }
  14330. if(params1 == 15.0){
  14331. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Rodeo Binco, Los Santos")
  14332. }
  14333. if(params1 == 15.11){
  14334. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Rodeo Binco, Los Santos")
  14335. }
  14336. if(params1 == 10.13){
  14337. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 an der Statdhalle, Los Santos")
  14338. }
  14339. if(params1 == 17.0){
  14340. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Alhambra, Los Santos")
  14341. }
  14342. if(params1 == 1.0){
  14343. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ammu, Los Santos")
  14344. }
  14345. if(params1 == 10.15){
  14346. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Dillimore, Los Santos")
  14347. }
  14348. if(params1 == 10.14){
  14349. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Palomino Creek, Los Santos")
  14350. }
  14351. if(params1 == 5.4){
  14352. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Pizza Laden Palomino Creek, Los Santos")
  14353. }
  14354. if(params1 == 10.1){
  14355. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Noob Spawn, Los Santos")
  14356. }
  14357. if(params1 == 10.2){
  14358. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Burger Short Garcia, San Fiero")
  14359. }
  14360. if(params1 == 3.170){
  14361. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  14362. }
  14363. if(params1 == 3.78){
  14364. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  14365. }
  14366. if(params1 == 2.77){
  14367. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  14368. }
  14369. if(params1 == 2.76){
  14370. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats, San Fiero")
  14371. }
  14372. if(params1 == 9.11){
  14373. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ocean Flats (Cluckin Bell), San Fiero")
  14374. }
  14375. if(params1 == 7.209){
  14376. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  14377. }
  14378. if(params1 == 3.219){
  14379. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  14380. }
  14381. if(params1 == 6.188){
  14382. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  14383. }
  14384. if(params1 == 7.80){
  14385. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Paradison, San Fiero")
  14386. }
  14387. if(params1 == 15.17){
  14388. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jumper Hill, San Fiero")
  14389. }
  14390. if(params1 == 10.11){
  14391. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Jumper Hill, San Fiero")
  14392. }
  14393. if(params1 == 2.79){
  14394. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Calton Hights, San Fiero")
  14395. }
  14396. if(params1 == 5.81){
  14397. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Calton Hights (Kringelsra?), San Fiero")
  14398. }
  14399. if(params1 == 15.6){
  14400. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Binco, San Fiero")
  14401. }
  14402. if(params1 == 10.1){
  14403. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Burger Shot, San Fiero")
  14404. }
  14405. if(params1 == 9.1){
  14406. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Cluckin Bell, San Fiero")
  14407. }
  14408. if(params1 == 10.1){
  14409. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown, San Fiero")
  14410. }
  14411. if(params1 == 20.2){
  14412. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Downtown Bank, San Fiero")
  14413. }
  14414. if(params1 == 7.227){
  14415. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Chinatown, San Fiero")
  14416. }
  14417. if(params1 == 9.8){
  14418. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Angel Pine Cluckin Bell, San Fiero")
  14419. }
  14420. if(params1 == 4.0){
  14421. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ammu, San Fiero")
  14422. }
  14423. if(params1 == 4.231){
  14424. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Farm ?er den Ls-Sf Tunnel, San Fiero")
  14425. }
  14426. if(params1 == 6.213){
  14427. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whetstone Farm, San Fiero")
  14428. }
  14429. if(params1 == 6.210){
  14430. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Flint County Farm, San Fiero")
  14431. }
  14432. if(params1 == 10.4){
  14433. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whetstone Tankstelle, San Fiero")
  14434. }
  14435. if(params1 == 4.173){
  14436. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Wohnwagensiedlung, San Fiero")
  14437. }
  14438. if(params1 == 6.0){
  14439. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ammu, Las Venturas")
  14440. }
  14441. if(params1 == 9.9){
  14442. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell neben der Yakuza Base, Las Venturas")
  14443. }
  14444. if(params1 == 10.6){
  14445. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Burger Shot neben der Yakuza Base, Las Venturas")
  14446. }
  14447. if(params1 == 10.5){
  14448. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Old Venturas Strip 24/7, Las Venturas")
  14449. }
  14450. if(params1 == 10.7){
  14451. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 Neben der Yakuza Base, Las Venturas")
  14452. }
  14453. if(params1 == 20.3){
  14454. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in der Bank, Las Venturas")
  14455. }
  14456. if(params1 == 10.5){
  14457. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  14458. }
  14459. if(params1 == 9.10){
  14460. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  14461. }
  14462. if(params1 == 15.16){
  14463. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  14464. }
  14465. if(params1 == 15.15){
  14466. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  14467. }
  14468. if(params1 == 15.14){
  14469. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Creek Kaufhaus, Las Venturas")
  14470. }
  14471. if(params1 == 15.8){
  14472. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Binco neben den Krankenhaus, Las Venturas")
  14473. }
  14474. if(params1 == 10.9){
  14475. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Burger Shot Redsands East, Las Venturas")
  14476. }
  14477. if(params1 == 1.109){
  14478. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14479. }
  14480. if(params1 == 3.168){
  14481. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14482. }
  14483. if(params1 == 2.86){
  14484. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14485. }
  14486. if(params1 == 1.166){
  14487. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14488. }
  14489. if(params1 == 6.165){
  14490. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14491. }
  14492. if(params1 == 2.164){
  14493. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14494. }
  14495. if(params1 == 1.163){
  14496. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14497. }
  14498. if(params1 == 2.82){
  14499. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14500. }
  14501. if(params1 == 2.167){
  14502. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14503. }
  14504. if(params1 == 2.83){
  14505. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14506. }
  14507. if(params1 == 3.84){
  14508. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14509. }
  14510. if(params1 == 3.85){
  14511. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Redsands West, Las Venturas")
  14512. }
  14513. if(params1 == 4.211){
  14514. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Prikle Pine, Las Venturas")
  14515. }
  14516. if(params1 == 3.212){
  14517. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Prikle Pine, Las Venturas")
  14518. }
  14519. if(params1 == 15.2){
  14520. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  14521. }
  14522. if(params1 == 9.5){
  14523. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  14524. }
  14525. if(params1 == 10.9){
  14526. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  14527. }
  14528. if(params1 == 15.1){
  14529. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  14530. }
  14531. if(params1 == 5.2){
  14532. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Kaufhaus Strip, Las Venturas")
  14533. }
  14534. if(params1 == 10.8){
  14535. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 neben der O-Amt Base, Las Venturas")
  14536. }
  14537. if(params1 == 4.196){
  14538. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  14539. }
  14540. if(params1 == 2.17){
  14541. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  14542. }
  14543. if(params1 == 2.208){
  14544. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  14545. }
  14546. if(params1 == 3.193){
  14547. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  14548. }
  14549. if(params1 == 2.194){
  14550. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Whitewood Estates, Las Venturas")
  14551. }
  14552. if(params1 == 1.161){
  14553. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Valle Ocultado, Las Venturas")
  14554. }
  14555. if(params1 == 4.153){
  14556. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bayside, Las Venturas")
  14557. }
  14558. if(params1 == 9.7){
  14559. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Cluckin Bell Tiera Robada, Las Venturas")
  14560. }
  14561. if(params1 == 2.214){
  14562. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Fort Carson, Las Venturas")
  14563. }
  14564. if(params1 == 6.225){
  14565. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bone County Puff, Las Venturas")
  14566. }
  14567. if(params1 == 5.225){
  14568. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Piligrim, Las Venturas")
  14569. }
  14570. if(params1 == 1.171){
  14571. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Tiera Roba Wunschhaus, Las Venturas")
  14572. }
  14573. if(params1 == 6.0){
  14574. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Los Santos Polizei, Los Santos")
  14575. }
  14576. if(params1 == 10.0){
  14577. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in FBI, San Fiero")
  14578. }
  14579. if(params1 == 5.204){
  14580. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Ballas Base, Los Santos")
  14581. }
  14582. if(params1 == 3.0){
  14583. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Stadthalle, Los Santos")
  14584. }
  14585. if(params1 == 5.172){
  14586. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Presidenten Villa, Los Santos")
  14587. }
  14588. if(params1 == 1.224){
  14589. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Triaden Base, San Fiero")
  14590. }
  14591. if(params1 == 10.3){
  14592. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in 24/7 neben BSN, Los Santos")
  14593. }
  14594. if(params1 == 6.162){
  14595. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Haus neben FFH, Las Venturas")
  14596. }
  14597. if(params1 == 3.189){
  14598. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Haus neben der San News Base, Las Venturas")
  14599. }
  14600. if(params1 == 6.73){
  14601. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  14602. }
  14603. if(params1 == 3.71){
  14604. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  14605. }
  14606. if(params1 == 8.72){
  14607. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Marina, Los Santos")
  14608. }
  14609. if(params1 == 3.202){
  14610. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in der Hitman Base, Las Venturas")
  14611. }
  14612. if(params1 == 2.190){
  14613. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Bayside, Las Venturas")
  14614. }
  14615. if(params1 == 8.226){
  14616. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Verona Beach, Los Santos")
  14617. }
  14618. if(params1 == 15.9){
  14619. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in Rodeo Binco, Los Santos")
  14620. }
  14621. if(params1 == 15.221){
  14622. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  14623. }
  14624. if(params1 == 8.220){
  14625. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  14626. }
  14627. if(params1 == 4.223){
  14628. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  14629. }
  14630. if(params1 == 5.222){
  14631. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in El Castilo Del Diablo, Las Venturas")
  14632. }
  14633. if(params1 == 9.75){
  14634. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befinindet sich in Marina (Jetty Lounge), Los Santos")
  14635. }
  14636. if(params1 == 3.206){
  14637. AddChatMessage(0xFFFFFF,"{FF0000}Der Spieler befindet sich in der San Fierro Rifa Base, Hashbury")
  14638. }
  14639. }
  14640. return
  14641.  
  14642.  
  14643.  
  14644. :?:/EinweisungA::
  14645. Suspend Permit
  14646. GetPlayerName(Opfer)
  14647. AddChatMessage(0xFFFFFF,"{FF0000}Herzlich Willkommen bei deiner Einweisung in das Federale Bureau of Investigation " . Opfer . "")
  14648. AddChatMessage(0xFFFFFF,"{FF0000}Die folgende Einweisung kannst du jeweils mit /Einweisung 1-5 abrufen (Mit Leertaste best?igen).")
  14649. return
  14650.  
  14651.  
  14652.  
  14653. :?:/Einweisung1::
  14654. Suspend permit
  14655. GetPlayerName(Name)
  14656. ShowDialog(0, "Einweisung in das FBI Teil 1 (Vorwort)", "Herzlich Willkommen im FBI " . Name . "`nIn dieser Einweisung werden Sie vieles ?er das FBI kennenlernen, unteranderem Tipps und Tricks die den FBI Alltag erleichtern`n Vorab w?e es aber um einiges Leichter, wenn du dir dir die Internen Stammdaten durchlesen w?dest, diese findet du im Internen Bereich, welches sich im Forum befindet.", "Erledigt!")
  14657. return
  14658.  
  14659. :?:/Einweisung2::
  14660. Suspend Permit
  14661. ShowDialog(0, "Einweisung in das FBI Teil 2 (Tipps)", "Gut, vielen Dank das du dir aufmerksam die Stammdaten durchgelesen hast.`n Im Folgenden werden dir ein paar Tricks erkl?t:`n`n 1. Verwende Waffengewalt immer als letztes.`n 2. Verhalte dich immer ruhig im TeamSpeak.`n 3. Habe immer Respekt vor deinen Vorgesetzten.`n 4. Tazer niemals im Kampf.`n 5. Benutze niemals unerlaubt den Seasparrow.`n 6. Wanteds f? z.B Angriff darfst du auch vergeben, wenn du Undercover bist.`n 7. Der BK-Notruf hat h?hste Priorit?.`n8. Den Sultan nach der Verwendung immer Reparieren und Tanken.`n9. ?ertreibe es nicht mit dem Ausruesten.`n10. Streife mit Rang 1. ist Untersagt (Ohne Ausnahmen)", "Okay!")
  14662. return
  14663.  
  14664. :?:/Einweisung3::
  14665. Suspend Permit
  14666. ShowDialog(0, "Einweisung in das FBI Teil 3 (Streifendienst)", "Der Streifendienst wird bis Rang 2 mit einem anderen Partner Ausgef?rt, wer dies Ignoriert wird Fristlos entlassen.`nDer Streifendienst wird mit einem Sultan oder Ranger ausgef?rt.`n Falls man einen Verbrecher gesichtet hat, muss man diesen mit NumPad 2 und 3 Vorwarnen, wenn dies passiert ist und der Verbrecher das anhalten verweigert,`n d?fen 2 Wanteds aufgrund von Flucht ausgestellt werden (ALT und NumPad2)`nSollte dieser trotzdem nicht anhalten, wird die Verfolung aufgenommen.`nDie Waffengewalt dient bei Fahrzeugen oder Objekten als letztes Mittel, wenn alles Andere fehlgeschlagen ist.", "Ok")
  14667. return
  14668.  
  14669. :?:/Einweisung4::
  14670. Suspend Permit
  14671. ShowDialog(0, "Einweisung in das FBI Teil 4 (SWAT-Eins?ze)", "Die SWAT Eins?ze werden von einem Einsatzleiter oder dem FBI (Deputy) Director im gelben (/R)adio Chat angek?digt`nSobald man so eine Ank?digung sieht muss man sich ohne Umwege in die Base bewegen, falls man das in der angegeben Zeit nicht schafft (Durch Eigenverschulden) folgen Sanktionen`n Den SWAT Skin kann man im Interrior anziehen (/SWAT im Interrior, bei dem Blauen T-Shirt)`n Sobald man diesen Skin hat, muss man sich auf die Gelbe Linie vor dem Interrior stellen, und auf weitere Anweisungen vom jeweiligen Einsatzleiter warten, Animationen sind in dieser Zeit zu unterlassen", "Gut!")
  14672. return
  14673.  
  14674. :?:/Einweisung5::
  14675. Suspend Permit
  14676. ShowDialog(0, "Einweisung in das FBI Teil 5 (Fuhrpark)", "In diesem Teil wird dir erkl?t, mit welchem Fahrzeug du wann fahren kannst.`nDer Sultan und der Ranger sind ab Rang 1 f? den aktiven Streifendienst gedacht, der Wasserwerfer sowie der Enforcer werden nur nach Aufforderungen vom FBI (Deputy) Director oder dem Einsatzleiter verwendet`nDer Police-Maverick und der Seasparrow ebenfalls nur nach Aufforderung`nSollte man diese Regel missachten (Ob bewusst oder unbewusst ist irrelevant) wird man Suspendiert", "Ok")
  14677. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement