Jump to content

Search the Community

Showing results for tags 'server'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

  1. Vim deixar aqui meu servidor de Roleplay , da uma passada lá tenho certeza que vão gostar, tmj ..... ts3 : bvh.ts3top.com server : mtasa://142.44.199.198:22033
  2. local vehicleElements = {} allVeh = {510} local pickupTable = { {1086.1798095703,-1801.6898193359,13.601690292358}, } function createPickupOnServerStart () for i, cor in ipairs (pickupTable) do local pickup = createPickup(cor[1], cor[2], cor[3], 3, 1274, 0) setElementData(pickup, "pickupArenda", true) end end addEventHandler("onResourceStart", getResourceRootElement( getThisResource() ), createPickupOnServerStart) function onResourceStop (veh) if isTimer(vehicleElements[veh]) then killTimer(vehicleElements[veh]) end --vehicleElements[veh] = destroyElement(veh) end addEventHandler("onResourceStop", getResourceRootElement( getThisResource() ), onResourceStop) function onPickupHit (hit) if not getElementData(source, "pickupArenda") or getElementType(hit) ~= "player" and not isPedInVehicle(hit) then return end triggerClientEvent(hit, "changeArendaMenuState", hit) end addEventHandler("onPickupHit", getRootElement(), onPickupHit) function onPlayerUseCustomPickup() if getPlayerMoney(source) >= 500 then local x, y, z = getElementPosition(source) local veh = createVehicle(allVeh[math.random(1,#allVeh)], x, y, z) setElementData(veh, "starter_pack", true) setElementData(veh, "owner", source) warpPedIntoVehicle(source, veh) takePlayerMoney(source, 500) outputChatBox("Bicicleta alugada, bom uso!.", source, 0, 255, 0) else outputChatBox("Para alugar uma bicicleta você precisa de >> 500 $$ <<.", source, 255, 0, 0) end end addEvent("onPlayerUseCustomPickup", true) addEventHandler("onPlayerUseCustomPickup", getRootElement(), onPlayerUseCustomPickup) function onPlayerVehicleEnter (veh, seat) if getElementData(veh, "starter_pack") == true and seat == 0 then if isTimer(vehicleElements[veh]) then killTimer(vehicleElements[veh]) end end end addEventHandler("onPlayerVehicleEnter", getRootElement(), onPlayerVehicleEnter) function onPlayerVehicleExit (veh, seat) if getElementData(veh, "starter_pack") == true and seat == 0 then if isTimer(vehicleElements[veh]) then killTimer(vehicleElements[veh]) end vehicleElements[veh] = setTimer(destroyElement, 300000, 1, veh) end end addEventHandler("onPlayerVehicleExit", getRootElement(), onPlayerVehicleExit) function onVehicleStartEnter (player, seat) if getElementData(source, "starter_pack") == true and seat == 0 then local owner = getElementData(source, "owner") if owner ~= player then cancelEvent() outputChatBox("Você não é dono desta bicicleta, alugue sua bike para poder usá-la.", player, 255, 0, 0) end end end addEventHandler("onVehicleStartEnter", getRootElement(), onVehicleStartEnter) This is the script to rent bike to a player. The bike is destroyed after 5 minutes, it's ok. But i need to do something that when player is arrasted, die, logout, exit of game the bike be destroyed too. function DestroyVeiculo (veh, seat) if getElementData(veh, "starter_pack") == true and seat == 0 then if isTimer(vehicleElements[veh]) then killTimer(vehicleElements[veh]) end --vehicleElements[veh] = setTimer(destroyElement, 300000, 1, veh) vehicleElements[veh] = destroyElement(veh) end end addEventHandler ("onPlayerLogout", getRootElement(), DestroyVeiculo) addEventHandler ("onPlayerQuit", getRootElement(), DestroyVeiculo) addEventHandler ("onPlayerWasted", getRootElement(), DestroyVeiculo) addEventHandler ("onPlayerBan", getRootElement(), DestroyVeiculo) addEventHandler ("onPlayerDie", getRootElement(), DestroyVeiculo) I tried to do it the way above, but not sucess. Someone can help me ? Thanks!
  3. Sorry by my english. I need to get a value with the whole number of weapons the player has. (Whole Number from player's weapon). I'm trying to do this, but with no sucess: function getPedWeapons(ped) local playerWeapons = {} if ped and isElement(ped) and getElementType(ped) == "ped" or getElementType(ped) == "player" then for i=2,9 do local wep = getPedWeapon(ped,i) if wep and wep ~= 0 then table.insert(playerWeapons,wep) end end else return false end return playerWeapons end function SaberArmas (player) outputChatBox("Armas (Caso tenha armas elas serão listadas abaixo!)",player,255,0,0) for i,wep in ipairs(getPedWeapons(player)) do outputChatBox("Você tem: " .. getWeaponNameFromID(wep),player,0,255,0) end end addEventHandler("onMarkerHit", MarkerInfo, SaberArmas) The script is making a list not a Whole Number. Someone can help me ?
  4. Estou com uma dúvida um tanto quanto pertinente. Quando faço um teleporte por maker por exemplo para um interior, quando o player é teleportado a câmera ao invés de ficar nas costas dele fica ao lado. Como faço para resolver ? PS: Já tentei o "setCameraTarget". Segue print abaixo para maiores detalhes: https://i.imgur.com/ClGFMrq.png
  5. Receive a cordial greeting, I am a player in the race (DM) game mode, I usually attend a large majority of servers with fame like FFS for example. I am writing to you because I am currently with some old players close to reopening a server on the platform (Team-NeO), but for that we need a very good scripter, you have a contact or friend who knows the subject and who wants to join our team to launch the server? Any concerns or interested write me. Again I appreciate your attention. Discord: Keselowski#4824
  6. qkode

    Log warnings

    I start the server and in the logs here are such errors I can not find a solution to them The database is connected. And then not like MTA:BLUE Server for MTA:SA ================================================================== = Multi Theft Auto: San Andreas v1.5.6 [64 bit] ================================================================== = Server name : Qkode rich Role Play = Server IP address: 51.255.28.114 = Server port : 22003 = = Log file : ..26930/11346/mods/deathmatch/logs/server.log = Maximum players : 40 = HTTP port : 24005 = Voice Chat : Disabled = Bandwidth saving : Medium ================================================================== [14:15:09] Resource 'acpanel' requests some acl rights. Use the command 'aclrequest list acpanel' [14:15:09] ERROR: Couldn't find file sfn_roadsSFN.txd for resource hd-drage [14:15:09] Loading of resource 'hd-drage' failed [14:15:09] ERROR: Couldn't find file images/incoming.png for resource phone [14:15:09] Loading of resource 'phone' failed [14:15:10] ERROR: Not processing resource 'ajax' as it has duplicates on different paths: Path #1: "resources/[web]/ajax" Path #2: "resources/[gameplay]/[web]/ajax" [14:15:10] ERROR: Not processing resource 'briefcase' as it has duplicates on different paths: Path #1: "resources/[gameplay]/briefcase" Path #2: "resources/[gamemodes]/[briefcaserace]/briefcase" [14:15:10] ERROR: Problem with resource: briefcaserace; Failed to link to briefcase [14:15:10] ERROR: Problem with resource: editor; [14:15:10] ERROR: Problem with resource: editor_main; Failed to link to freecam [14:15:10] ERROR: Not processing resource 'elementbrowser' as it has duplicates on different paths: Path #1: "resources/[web]/elementbrowser" Path #2: "resources/[gameplay]/[web]/elementbrowser" [14:15:10] ERROR: Problem with resource: fallout; Failed to link to freecam [14:15:10] ERROR: Not processing resource 'freecam' as it has duplicates on different paths: Path #1: "resources/[gameplay]/freecam" Path #2: "resources/[editor]/freecam" [14:15:10] ERROR: Not processing resource 'ipb' as it has duplicates on different paths: Path #1: "resources/[gameplay]/ipb" Path #2: "resources/[admin]/ipb" [14:15:10] ERROR: Not processing resource 'performancebrowser' as it has duplicates on different paths: Path #1: "resources/[web]/performancebrowser" Path #2: "resources/[gameplay]/[web]/performancebrowser" [14:15:10] ERROR: Not processing resource 'resourcebrowser' as it has duplicates on different paths: Path #1: "resources/[web]/resourcebrowser" Path #2: "resources/[gameplay]/[web]/resourcebrowser" [14:15:10] ERROR: Not processing resource 'resourcemanager' as it has duplicates on different paths: Path #1: "resources/[web]/resourcemanager" Path #2: "resources/[gameplay]/[web]/resourcemanager" [14:15:10] ERROR: Problem with resource: runcode; Failed to link to ajax [14:15:10] ERROR: Not processing resource 'webadmin' as it has duplicates on different paths: Path #1: "resources/[web]/webadmin" Path #2: "resources/[gameplay]/[web]/webadmin" [14:15:10] ERROR: Not processing resource 'webmap' as it has duplicates on different paths: Path #1: "resources/[web]/webmap" Path #2: "resources/[gameplay]/[web]/webmap" [14:15:10] ERROR: Not processing resource 'webstats' as it has duplicates on different paths: Path #1: "resources/[web]/webstats" Path #2: "resources/[gameplay]/[web]/webstats" [14:15:10] Resources: 333 loaded, 5 failed [14:15:10] MODULE: Loaded "MySQL 5.0 database module" (0.50) by "Alberto Alonso <[email protected]>" [14:15:10] MODULE: File not found - x64/modules/libmysqlclient.so.15 [14:15:10] Starting resources... [14:15:10] INFO: --! Выполняется подключение к базе данных !-- [14:15:10] INFO: Хост: 176.31.24.37 [14:15:10] INFO: База данных: gs11346 [14:15:10] INFO: Пользователь: gs11346 [14:15:10] INFO: Пароль: *********** [14:15:10] INFO: Порт MYSQL: 3306 [14:15:10] INFO: --! Ожидаем ответ от подключения: [14:15:10] INFO: Подключение MySQL прошло успешно! [14:15:10] INFO: United RolePlay by Misha_Konsta [14:15:10] Server minclientversion is now 1.5.6-9.18706.0 [14:15:10] WARNING: hud/c_overlay_top_right.Lua(Line 56) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: hud/c_overlay_bottom_center.Lua(Line 47) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] Some files in 'hud' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] ERROR: Couldn't find resource maximap. Check it exists. [14:15:10] WARNING: account/c_main.Lua(Line 3) [Client] showPlayerHudComponent is deprecated and may not work in future versions. Please replace with setPlayerHudComponentVisible. [14:15:10] WARNING: account/c_characters.Lua(Line 7) [Client] showPlayerHudComponent is deprecated and may not work in future versions. Please replace with setPlayerHudComponentVisible. [14:15:10] WARNING: account/c_options.Lua(Line 248) [Client] setControlState is deprecated and may not work in future versions. Please replace with setPedControlState. [14:15:10] Some files in 'account' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: admin-system/Player/s_teleport.Lua(Line 32) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:10] WARNING: admin-system/c_overlay.Lua(Line 116) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] Some files in 'admin-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] Server password cleared [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] WARNING: driveby/driveby_client.Lua(Line 258) [Client] setControlState is deprecated and may not work in future versions. Please replace with setPedControlState. [14:15:10] Some files in 'driveby' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: elevator-system/s_elevator_system.Lua(Line 362) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:10] Some files in 'elevator-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] ERROR: Couldn't find resource freecam. Check it exists. [14:15:10] WARNING: fuel-system/s_fuel_peds.Lua(Line 639) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:10] Some files in 'fuel-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] SCRIPT ERROR: [gameplay]/fuel-system/s_fuel_peds.Lua:36: '}' expected near '.' [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x97] [14:15:10] ERROR: Loading script failed: [gameplay]/fuel-system/s_fuel_peds.Lua:36: '}' expected near '.' [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] Please wait... [14:15:10] WARNING: heligrab/c_heli.Lua(Line 191) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] Some files in 'heligrab' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: interior-system/blips_s.Lua [Server] is encoded in ANSI instead of UTF-8. Please convert your file to UTF-8. [14:15:10] Some files in 'interior-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x34] [14:15:10] WARNING: Script '[gameplay]/interior-system/blips_s.Lua' is not encoded in UTF-8. Loading as ANSI... [14:15:10] SCRIPT ERROR: [gameplay]/interior-system/blips_s.Lua:1: unexpected symbol near '?' [14:15:10] ERROR: Loading script failed: [gameplay]/interior-system/blips_s.Lua:1: unexpected symbol near '?' [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] WARNING: item-system/s_inventory.Lua [Server] is encoded in ANSI instead of UTF-8. Please convert your file to UTF-8. [14:15:10] Some files in 'item-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x20] [14:15:10] WARNING: Script '[gameplay]/item-system/s_inventory.Lua' is not encoded in UTF-8. Loading as ANSI... [14:15:10] SCRIPT ERROR: [gameplay]/item-system/s_inventory.Lua:1: unexpected symbol near '?' [14:15:10] ERROR: Loading script failed: [gameplay]/item-system/s_inventory.Lua:1: unexpected symbol near '?' [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x13] [14:15:10] WARNING: [gameplay]/item-texture/s_itemtexture.Lua:44: Bad argument @ 'getElementsByType' [Expected element at argument 2, got boolean] [14:15:10] ERROR: [gameplay]/item-texture/s_itemtexture.Lua:48: attempt to get length of local 'worldItems' (a boolean value) [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x6] [14:15:10] INFO: [ITEM WORLD] Loading 5 world items will be finished in approximately 0.3 seconds. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] WARNING: job-system-trucker/s_trucker_job.Lua(Line 684) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:10] WARNING: job-system-trucker/c_overlay.Lua(Line 294) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: job-system-trucker/s_marker.Lua [Server] is encoded in ANSI instead of UTF-8. Please convert your file to UTF-8. [14:15:10] Some files in 'job-system-trucker' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x27] [14:15:10] WARNING: Script '[gameplay]/job-system-trucker/s_marker.Lua' is not encoded in UTF-8. Loading as ANSI... [14:15:10] SCRIPT ERROR: [gameplay]/job-system-trucker/s_marker.Lua:1: unexpected symbol near '?' [14:15:10] ERROR: Loading script failed: [gameplay]/job-system-trucker/s_marker.Lua:1: unexpected symbol near '?' [14:15:10] INFO: [JOB-SYSTEM-TRUCKER] Fetched 0 actual orders sucessfully from SQL [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] WARNING: pd-system/c_policedeagle.Lua(Line 110) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: pd-system/c_policeshotgun.Lua(Line 84) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] Some files in 'pd-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x34] [14:15:10] INFO: Loaded 0 pilot licenses in 1ms. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:10] ERROR: Couldn't find resource nomera. Check it exists. [14:15:10] ERROR: Couldn't find resource toner. Check it exists. [14:15:10] ERROR: Couldn't find resource handling. Check it exists. [14:15:10] ERROR: Couldn't find resource phone. Check it exists. [14:15:10] WARNING: realism-system/c_backup_bleepers.Lua(Line 86) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: realism-system/c_fpview.Lua(Line 112) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: realism-system/c_carrealism.Lua(Line 89) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: realism-system/handbrake_c.Lua(Line 55) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: realism-system/handbrake_c.Lua(Line 56) [Client] setControlState is deprecated and may not work in future versions. Please replace with setPedControlState. [14:15:10] Some files in 'realism-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: report-system/c_external_report_box.Lua(Line 68) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] WARNING: report-system/c_top_right_box.Lua(Line 22) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:10] Some files in 'report-system' use deprecated functions. [14:15:10] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x34] [14:15:10] INFO: Loaded 0 reports. [14:15:10] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] WARNING: shop-system/s_generalshop_system.Lua(Line 349) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:11] Some files in 'shop-system' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: spike-system/c_spikes.Lua(Line 24) [Client] getVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with getElementAngularVelocity. [14:15:11] WARNING: spike-system/c_spikes.Lua(Line 25) [Client] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:11] Some files in 'spike-system' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: vehicle-system/s_entry.Lua [Server] is encoded in ANSI instead of UTF-8. Please convert your file to UTF-8. [14:15:11] Some files in 'vehicle-system' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x76] [14:15:11] WARNING: Script '[gameplay]/vehicle-system/s_entry.Lua' is not encoded in UTF-8. Loading as ANSI... [14:15:11] SCRIPT ERROR: [gameplay]/vehicle-system/s_entry.Lua:1: unexpected symbol near '?' [14:15:11] ERROR: Loading script failed: [gameplay]/vehicle-system/s_entry.Lua:1: unexpected symbol near '?' [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] ERROR: Couldn't find resource vehicleplate. Check it exists. [14:15:11] ERROR: Couldn't find resource weaponcap. Check it exists. [14:15:11] WARNING: vehicle-interiors/s_vehicle_interiors.Lua(Line 488) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:11] Some files in 'vehicle-interiors' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x34] [14:15:11] ERROR: [gameplay]/vehicle-interiors/s_vehicle_interiors.Lua:161: attempt to perform arithmetic on a boolean value [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] WARNING: superman/c_superman.Lua(Line 339) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:11] Some files in 'superman' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: gate-manager/s_gate_manager.Lua(Line 203) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:11] Some files in 'gate-manager' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: sfia/s_airtrack.Lua(Line 58) [Server] showPlayerHudComponent is deprecated and may not work in future versions. Please replace with setPlayerHudComponentVisible. [14:15:11] Some files in 'sfia' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: vehicle-manager/s_vehicle_commands.Lua(Line 198) [Server] setVehicleTurnVelocity is deprecated and may not work in future versions. Please replace with setElementAngularVelocity. [14:15:11] Some files in 'vehicle-manager' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x195] [14:15:11] INFO: Loaded 2 texture records for all interiors in 0ms [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] WARNING: announcement/client.Lua(Line 20) [Client] getControlState is deprecated and may not work in future versions. Please replace with getPedControlState. [14:15:11] Some files in 'announcement' use deprecated functions. [14:15:11] Use the 'upgrade' command to perform a basic upgrade of resources. [14:15:11] ERROR: Couldn't find resource briefcase. Check it exists. [14:15:11] ERROR: Couldn't find resource weapon-system. Check it exists. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x55] [14:15:11] INFO: Loaded 0 clothing items [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x6] [14:15:11] INFO: LeFire Script loaded ... [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x13] [14:15:11] ERROR: [gameplay]/clubtec/s_clubtec.Lua:10: exports: Call to non-running server resource (fakevideo) [string "?"] [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x6] [14:15:11] INFO: Loaded 0 animated texture records in 0ms [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x13] [14:15:11] INFO: PRISON-SYSTEM: Loaded 24 cell gates from s_gates.Lua [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] ERROR: Couldn't find resource aimer-system. Check it exists. [14:15:11] ERROR: Couldn't find resource sfhr-system. Check it exists. [14:15:11] SCRIPT ERROR: [gameplay]/ticket-system/s_vehticket.Lua:98: ')' expected near 'Los' [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x34] [14:15:11] ERROR: Loading script failed: [gameplay]/ticket-system/s_vehticket.Lua:98: ')' expected near 'Los' [14:15:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:15:11] ERROR: Couldn't find resource chopping-system. Check it exists. [14:15:13] ERROR: Couldn't find resource wheels. Check it exists. [14:15:13] ERROR: Couldn't find resource toner. Check it exists. [14:15:13] ERROR: Couldn't find resource fr_nomera. Check it exists. [14:15:13] Authorized serial account protection is enabled for the ACL group(s): `Admin` See https://mtasa.com/authserial [14:15:13] WARNING: <owner_email_address> not set [14:15:13] Server started and is ready to accept connections! [14:15:13] To stop the server, type 'shutdown' or press Ctrl-C [14:15:13] Type 'help' for a list of commands. [14:15:14] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x20] [14:15:14] WARNING: [gameplay]/global/s_account_globals.Lua:43: getUserNameFromID(): Unable [14:15:14] WARNING: [gameplay]/global/s_account_globals.Lua:43: getUserNameFromID(): Unable [DUP x10] [14:15:14] ERROR: [gameplay]/vehicle-system/s_vehicle_system.Lua:283: cannot resume dead coroutine [string "?"] [14:15:15] ERROR: [gameplay]/vehicle-system/s_vehicle_system.Lua:283: cannot resume dead coroutine [string "?"] [DUP x110] [14:15:15] ERROR: [gameplay]/ped-system/s_peds.Lua:67: cannot resume dead coroutine [string "?"] [14:15:15] Querying MTA master server... success! (Auto detected IP:51.255.28.114) [14:15:15] ERROR: [gameplay]/ped-system/s_peds.Lua:67: cannot resume dead coroutine [string "?"] [DUP x12] [14:15:15] ERROR: [gameplay]/vehicle-system/s_vehicle_system.Lua:283: cannot resume dead coroutine [string "?"] [14:15:16] ERROR: [gameplay]/vehicle-system/s_vehicle_system.Lua:283: cannot resume dead coroutine [string "?"] [DUP x110] [14:15:16] ERROR: [gameplay]/ped-system/s_peds.Lua:67: cannot resume dead coroutine [string "?"] [14:15:16] ERROR: [gameplay]/ped-system/s_peds.Lua:67: cannot resume dead coroutine [string "?"] [DUP x12] [14:15:16] INFO: [WEATHER] / Line 57 / SQL Settings for weather successfully altered. [14:15:16] ERROR: [gameplay]/vehicle-system/s_vehicle_system.Lua:283: cannot resume dead coroutine [string "?"] [14:15:17] ERROR: [gameplay]/vehicle-system/s_vehicle_system.Lua:283: cannot resume dead coroutine [string "?"] [DUP x110] [14:15:17] ERROR: [gameplay]/ped-system/s_peds.Lua:67: cannot resume dead coroutine [string "?"] [14:15:23] ERROR: [gameplay]/ped-system/s_peds.Lua:67: cannot resume dead coroutine [string "?"] [DUP x12] [14:15:26] CONNECT: Qkode connected (IP: ####### Serial: ########## Version: 1.5.6-9.18706.0) [14:15:27] JOIN: Qkode joined the game (IP: #######) [14:15:27] NICK: Qkode is now known as TG.Player.1956 [14:15:40] INFO: [ELEVATOR] Нерест472 лифты будут закончены в прибл. 48 seconds. [14:16:11] Stopping item-texture [14:16:11] Starting item-texture [14:16:11] INFO: item-texture: Loading textures for 5 world items [14:16:11] INFO: item-texture: 0 clients waiting on initial sync. [14:16:11] INFO: item-texture: 5 textured elements were added for initial sync. [14:16:11] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [14:16:11] item-texture restarted successfully [14:16:12] ACL: Denied 'TG.Player.1956' access to command 'start' [14:16:17] ACL: Denied 'TG.Player.1956' access to command 'restart' [14:16:17] WARNING: [gameplay]/admin-system/Player/s_player_commands.Lua:734: Expected number, got non-convertible string. This warning may be an error in future versions. [DUP x6] Help please
  7. Est que esta prova disso erro? Versão = 1.5.6-release-18706.0.000 Time = Wed Jul 10 19:16:27 2019 Módulo = ? \ Arquivos de Programas (x86) \ MTA San Andreas 1.5 \ mta \ game_sa.dll Código = 0xC0000005 Offset = 0x00050320 EAX = 6F980305 EBX = 0177F220 ECX = 6F980305 EDX = 00000000 ESI = 0177F220 EDI = 21EF3260 EBP = 0177F1E4 ESP = 0177F1DC EIP = 6F980320 FLG = 00010206 CS = 0023 DS = 002B SS = 002B ES = 002B FS = 0053 GS = 002B se alguém poder me ajudar agradeço!
  8. Eu estou tentando entrar no servidor Groove Street e não consigo, pois o MTA pede para atualizar a versão, eu clico para atualizar e me aparece que não há atualizações disponíveis, o que eu faço?????????
  9. Fala Rapaziada,Sou Vice Precidente(Sub-Dono) Do sevir Brasil Real Life BR , Sevidor esta em beta , temos mods excusivos , otima equipe staff e otimos scripter, Sevidor Conta Cm Discord , Em Breve Talvez TS ,, Convidos Toods A conhcer o sevirdor, obs Sevidor esta com promoçao , a cada 10 membros que vc trazer ganhara vip de 1 mes Link do Dc: https://discord.gg/U7w8MFu Ip do Sevidor:mtasa://142.4.208.82:22563
  10. Hi, i have a server maybe more then 4 months i changed 3 hosts and the server always listed in the server browser. Now my server's got a new ip and its begin unlisted. port are open and no illegal content in my server. Somebody tell me why is it not listed and if have solution tell me please.
  11. NEW SERVER! TOP-GTA 1.4 STYLE INFECTIONZ DAYZ BRASIL IP: mtasa://198.50.207.61:22003
  12. Hoje recebi uma sugestão para melhorar meu servidor o seguinte mod : Ligar para tal jogador . Se tiver como pfv me respondam e oque devo usar para fazer esse mod se não tiver como pode falar . !!
  13. Oi pessoal eu to criando um servidor 100% RP , e para um servidor Rp eu acho que eu chat local não é necessário quando eu aperto a tecla "t" abre o chat queria saber como remover esse chat
  14. Hello guys! , today i have a question to you! When we press the key "t" it open a chat. How i can remove this chat? Im creating a Full Roleplay Server , and for the roleplay a localchat dont make sense . So if you can help-me i really aprecciate!
  15. MTA • Звездный Десант. Вас на нашем проекте будут ждать: а) арахниды - основной боевой материал пауков; б) летающие пауки - арахниды с возможностью полета и истребления летательной техники в) альфа жуки - арахниды которые в разы сильнее обычных жуков г) жуки плазмоиды - система пво жуков. д) танкер - жук который поливает все живое огнем. и многие другие виды. - Огромный звездолет - Крейсер Роджер Янг - Уникальная погода - Уникальное оружие - Уникальное и не повторяющееся сопоставление нескольких планет: а) марс б) нептун Работа над проектом идет полным ходом! Вы уже можете посетить наш сервер. ◘ Хороший паук - мертвый паук Открытие сервера состоялось 1.03.2019года. Уже сейчас все перечисленное выше. Например, - система бронирования своя (на данный момент состоит из 12 сборных частей брони). В настоящее время идет работа над дополнительными видами, которые позволят сделать около 30 различных видов каждой детали бронекостюмы, что позволит максимально кастомизировать вашего персонажа) - Квестовая система, где Игровые НПС помогут вам освоить наш проект. Наша группа в ВК: https://vk.com/desertolive Ип адрес проекта: 212.76.128.66:10084 П.с. как говорится убивай всех у кого больше двух ног! Не давай им пощады! Вы же хотите чтобы Вас помнили ?!)
  16. João Santos

    SD #15 SIGN

    So when I try to enter in a specific server it says that it requires driver signing to be enabled. It appears that error code is SD #15 SIGN. I don't know what does that means but I have already reinstalled Gta San Andreas and MTA and did update my drivers. Help me please.
  17. I dont know if its a feature of mta server to auto start all mods but any ways when i start the server and enter it no mods are loaded and i have to use the "start resource" command on every mod .
  18. I want to make a server on wich I can play with my friends but I need help making it not local only so it can be accsessed outside my network.
  19. Server name: [PL] Endless War - Polski Serwer Wojny Gangów | Discord.io/EndlessWar IP: mtasa://178.33.54.32:20008 Slots: 40 Gamemode: Gang Wars / TDM / Freeroam Forum: http://endlesswar.pl Discord: https://discord.io/EndlessWar We present you the server Endless War - Gang Wars / TDM with elements Freeroam's. Bored with the same ideas repeated over and over again, we decided to create a place where you can live, shoot and relax from the rules of roleplay and feel the original atmosphere of the single San Andreas. This is the official, reactivated and corrected gamemode. Playing at the Endless War has never been so enjoyable! There are 6 gangs to choose from: Grove Street Families, Ballas, Los Santos Vagos, Varrios Los Aztekas, Mafia i Policja. The action mainly takes place in the areas of Los Santos. Each team has unique skins, sets of weapons and headquarters. You can take on many interesting tasks on our server. Have you ever wanted to rob a bank, but no other server has allowed you to do it? It is possible with us! All you have to do is gather at least three gang members, break through to the diligently guarded bank and start the robbery. But you have to be careful, the police were ready for such an eventuality ... Do you need fast cash? What do you say about robbing other gang of drugs? All you have to do is sit down to Picador, get to the enemy's headquarters and come back with the goods to you. It's simple, right? Attack enemy territory to provide your team with an additional source of cash. Visit Ammunation, arm yourself, take a few people to help and get to work! Are you tired of the constant battle with other players? Duel 1v1? Derby? This and many other automatic attractions can be found on our server! On our server it is possible to choose a different sight, a weapon skins, mounting a silencer for a rifle and many other such things. On the server you can buy a VIP account for a low price. In return, you will receive an iPhone that gives you access to many interesting things, such as the possibility of spawn saved by you vehicle, teleporting the player to yourself and to him, the possibility of buying weapons anywhere, a special chat and many more! --- There are many other attractions that we have not mentioned here. You are also cordially invited! See you on the server! A bilingual system will soon be added, thanks to which English subtitles will also be available. --- Subtitles in language PL-EN
  20. Entre No Nosso Mais Novo Servidor Rp Brasileiros Vida Real Temos Motos|Carros|Economia|Corps|Gangs Entre Ja mtasa://142.4.223.97:22333 mtasa://142.4.223.97:22333 mtasa://142.4.223.97:22333 #RP #NOVO #DoBaixoAoAuto
  21. Actualmente necesito un scripter para un servidor freeroam de Anime, es un servidor con potencial pero necesita ser desarrollado...
  22. i need solve for this problem i not use any hack or dll files last server play is vultaic i want help please can't join server local
  23. Does anyone know how to create a free online mta server?, What is it said for and appears in the "Internet" part? Thank you Alguien sabe como crear un server de mta online gratis?, para que la gente se una y aparesca en la parte de "Internet"?. Gracias. Alguien sabe como crear un server de mta online gratis?, para que la gente se una y aparesca en la parte de "Internet"?. Gracias.
  24. Ok so i making a server for the first time and i port forwarded the required ports and i opened them. But when my friends try to join it keeps saying connection timed out and idk why. If yall could help me that would be wonderful cause i'm making a roleplay server for my community My discord is: Trooper. Weekly#5032 Thanks
×
×
  • Create New...