Jump to content

Aurora

Members
  • Posts

    12
  • Joined

  • Last visited

1 Follower

Details

  • Gang
    NGC
  • Occupation
    MTA Member
  • Interests
    Nothing

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Aurora's Achievements

Square

Square (6/54)

0

Reputation

  1. Your disk is being used totally, that's a risk also on your PC. Try turning off the notifications of windows 10 from settings, and tell me the results.
  2. I think you should open the task manager, process tab, and screenshot it when MTA is opened. I think I can help you, since I had the same problem after upgrading to Windows 10 from Windows 7.
  3. Is there any possibility to support CentOS 6.7?
  4. Aurora

    removed

    You're not allowed to sell my resources. I don't think you have my latest scripts, since you are banned, cause of DDoSing and hacking MTA money. I am requesting any moderator to close this topic and ban this user. I am REPEATING, No one is allowed to share or leak my resources.
  5. Which legal actions are you talking about ? Arab countries don't care about illegal connections. The only choice to me was to pay, and everyone who wants to start a successful server should pay much to avoid those haters.
  6. I got DDoSed 48 hours ago, and it was too strong to drop an OVH Dedicated server.
  7. OVH protection is too week without UDP protection! MADE, How is that possible if we use cloudFlare, and the dedicated won't host HTTP services. At least, easy kids won't try to find out the IP. They DDOS, because they see it's easy to destroy a big and successful server.
  8. Hello there, I am suggestion to make the IPs of servers not visible. Nowadays, any kid with money can do a denial of service attack to drop a good MTA server, even OVH servers. I bought three dedicated server in an week in order to protect my server, hiding the IP may be a good step in protecting servers.
  9. NGC~CSG is not hosted from Delta host. Edit your signature, and be honest next time.
  10. local marker1 = createMarker( 1580.6999511719, -1609.5, 11.89999961853, "Cylinder", 2.6, 0, 75, 255, 255) local marker2 = createMarker( 1573.6999511719, -1610.3000488281, 11.89999961853, "Cylinder", 2.6, 0, 75, 255, 255) local marker3 = createMarker( 1566.9000244141, -1610.8000488281, 11.89999961853, "Cylinder", 2.6, 0, 75, 255, 255) local marker4 = createMarker( 1559.4000244141, -1610.5999755859, 11.89999961853, "Cylinder", 2.6, 0, 75, 255, 255) local marker5 = createMarker( 1595.5999755859, -1709.9000244141, 4.6999998092651, "Cylinder", 2.6, 0, 75, 255, 255) GUIEditor = { gridlist = {}, window = {}, label = {}, } GUIEditor.window[1] = guiCreateWindow(399, 131, 403, 426, "Police vehicle", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FF001EFB") guiSetVisible(GUIEditor.window[1], false) GUIEditor.label[1] = guiCreateLabel(48, 33, 289, 70, "Here you can spawn Police vehicles", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[1], "clear-normal") guiLabelSetColor(GUIEditor.label[1], 17, 0, 252) guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) guiLabelSetVerticalAlign(GUIEditor.label[1], "center") GUIEditor.gridlist[1] = guiCreateGridList(30, 124, 337, 221, false, GUIEditor.window[1]) guiGridListAddColumn(GUIEditor.gridlist[1], "ID", 0.3) guiGridListAddColumn(GUIEditor.gridlist[1], "Name", 0.7) for i = 1, 6 do guiGridListAddRow(GUIEditor.gridlist[1]) end guiGridListSetItemText(GUIEditor.gridlist[1], 0, 1, "596", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 0, 2, "Police Car LS", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 1, 1, "597", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 1, 2, "Police Car SF", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 2, 1, "598", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 2, 2, "Police Car LV", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 3, 1, "523", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 3, 2, "HPV1000", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 4, 1, "599", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 4, 2, "Police Ranger", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 5, 1, "415", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 5, 2, "Cheetah", false, false) spawn = guiCreateButton(16, 355, 181, 50, "Spawn", false, GUIEditor.window[1]) guiSetFont(spawn, "clear-normal") guiSetProperty(spawn, "NormalTextColour", "FF72FE00") Cancel = guiCreateButton(207, 355, 186, 54, "Cancel", false, GUIEditor.window[1]) guiSetFont(Cancel, "clear-normal") guiSetProperty(Cancel, "NormalTextColour", "FFFD0000") function vpspawner(hitElement) if getElementType(hitElement) == "player" and (hitElement == localPlayer) then if getPlayerTeam(localPlayer) == getTeamFromName("Police") then if not isPedInVehicle(localPlayer) then if not guiGetVisible(GUIEditor.window[1]) then guiSetVisible(GUIEditor.window[1], true) showCursor(true) end end end else exports["TopBarChat"]:sendClientMessage ("This Marker for certain job or team", 255, 255, 0 ) end end addEventHandler("onClientMarkerHit", marker1, vpspawner) addEventHandler("onClientMarkerHit", marker2, vpspawner) addEventHandler("onClientMarkerHit", marker3, vpspawner) addEventHandler("onClientMarkerHit", marker4, vpspawner) addEventHandler("onClientMarkerHit", marker5, vpspawner) function createveh() local pspawner = getLocalPlayer() local x, y, z = getElementPosition ( pspawner ) local vehicle = guiGridListGetItemText ( GUIEditor.gridlist[1], guiGridListGetSelectedItem ( GUIEditor.gridlist[1] ), 1 ) if vehicle then triggerServerEvent("onSpawnVeh", localPlayer, tonumber(vehicle)) guiSetVisible(GUIEditor.window[1], false) showCursor(false) end end addEventHandler("onClientGUIClick", spawn, createveh, false) function spawnclose() guiSetVisible(GUIEditor.window[1], false) showCursor(false) if (toonShader) then destroyElement(toonShader) toonShader = nil end end addEventHandler("onClientGUIClick", Cancel, spawnclose, false) i just change first places and thats happen
  11. Hello guys when i made a vehicle spawner in LSPD then i copied in LVPD But changed places ( x,y,z ) in client.lua when i spawn in lv it spawned double car i mean if i spawned LV Car 2 lv cars appear so what must i do to solve this?
×
×
  • Create New...