Jump to content

stefutz101

Members
  • Posts

    245
  • Joined

  • Last visited

1 Follower

About stefutz101

  • Birthday 27/12/1997

Details

  • Gang
    RedFear
  • Location
    Bacau , Romania
  • Occupation
    Student , Gamer.
  • Interests
    I want make friends and learn LUA.

Recent Profile Visitors

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

stefutz101's Achievements

Red-Headed Stepchild

Red-Headed Stepchild (19/54)

0

Reputation

  1. I don't think so... . I called the guys from host and they told me my server can eat how much memory it need ( talking about HDD memory). Ram used: 0.4% CPU used: 11.9%.
  2. Alright, thanks a lot. If it will crash again i will come with a reply. Thanks again!
  3. Alright done that. Server now started. What now ? Question: i will have to let that setting like that ? i mean that won't affect the rest of the files ?
  4. Nothing happen. I'm not sure if i used the commands right.
  5. Hi. I downloaded and updated my server with the given version. ####### SERVICE RESTART AT 2017-06-08 11:40 BY CLIENT ####### bash: ./mta-server: Permission denied Now what i have to do? One more thing: i didn't have a x86 folder. That means my server is a 32 bit server or the guys from host fked up and installed a 32 bit server by default? I'm confused because they said server runs on 64 bits. BTW: I already used the following command: chmod +x ./mta-server Same problem. Thanks in advance for helping.
  6. I enter here /serviceXXXX/mods/deathmatch/dumps dumps folder is empty.
  7. Hello. I have a MTA DayZ server and after a while server shut down automatically and then restart. [2017-06-07 02:00:04] JOIN: MessyWharf6 joined the game (IP: 79.169.163.151) [2017-06-07 02:01:37] QUIT: MessyWharf6 left the game [Quit] [2017-06-07 02:03:37] [Backup]: Players saved [0] [2017-06-07 02:18:37] [Backup]: Players saved [0] [2017-06-07 02:33:37] [Backup]: Players saved [0] [2017-06-07 02:48:37] [Backup]: Players saved [0] ================================================================== = Multi Theft Auto: San Andreas v1.5 ================================================================== = Server name : [RedFear]Top-DayZ International/Romanian = Server IP address: 212.83.165.15 = Server port : 22003 = = Log file : ..service1075/mods/deathmatch/logs/server.log = Maximum players : 50 = HTTP port : 22010 = Voice Chat : Disabled = Bandwidth saving : Medium ================================================================== [2017-06-07 03:00:11] Resources: 120 loaded, 0 failed [2017-06-07 03:00:11] MODULE: Loaded "MySQL 5.0 database module" (0.50) by "Alberto Alonso <[email protected]>" [2017-06-07 03:00:11] MODULE: Loaded "Curl module" (1.01) by "Alexander de Jong (AKA mrdejong)" [2017-06-07 03:00:11] MODULE: Loaded "IRC Echo" (2.10) by "VRocker" [2017-06-07 03:00:11] MODULE: Loaded "Sockets Module" (1.30) by "Gamesnert, MCvarial & x86" [2017-06-07 03:00:11] MODULE: Loaded "SHA Module" (1.02) by "mabako" [2017-06-07 03:00:11] Starting resources... [2017-06-07 03:00:11] Server minclientversion is now 1.5.4-9.11324.0 [2017-06-07 03:00:16] WARNING: File 'weapons/349.txd' in resource 'Skins' is invalid. [2017-06-07 03:00:19] WARNING: gang_system <min_mta_version> section in the meta.xml is incorrect or missing (expected at least client 1.3.4-0.00000 because of 'gang_client.lua') [2017-06-07 03:00:19] WARNING: gang_system requires upgrade as <min_mta_version> section in the meta.xml is incorrect or missing (expected at least client 1.3.4-0.00000 because of 'gang_client.lua') [2017-06-07 03:00:19] Use the 'upgrade' command to perform a basic upgrade of resources. [2017-06-07 03:00:19] INFO: Gang System: Successfully connected to database [2017-06-07 03:00:19] Querying MTA master server... success! (Auto detected IP:212.83.165.15) [2017-06-07 03:00:19] Server started and is ready to accept connections! [2017-06-07 03:00:19] To stop the server, type 'shutdown' or press Ctrl-C [2017-06-07 03:00:19] Type 'help' for a list of commands. ================================================================== = Multi Theft Auto: San Andreas v1.5 ================================================================== = Server name : [RedFear]Top-DayZ International/Romanian = Server IP address: 212.83.165.15 = Server port : 22003 = = Log file : ..service1075/mods/deathmatch/logs/server.log = Maximum players : 50 = HTTP port : 22010 = Voice Chat : Disabled = Bandwidth saving : Medium ================================================================== Server is hosted on linux. Thanks in advance!
  8. I just found the problem , that image was missing .
  9. Found problem: local headline = {} rightclickWindow = guiCreateStaticImage(0,0,0.05,0.0215,"images/scrollmenu_1.png",true) headline["rightclickmenu"] = guiCreateLabel(0,0,1,1,"",true,rightclickWindow) guiLabelSetHorizontalAlign (headline["rightclickmenu"],"center") guiLabelSetVerticalAlign (headline["rightclickmenu"],"center") guiSetFont (headline["rightclickmenu"], "default-bold-small" ) guiSetVisible(rightclickWindow,false) function showRightClickInventoryMenu (itemName,itemInfo) if itemInfo then local screenx, screeny, worldx, worldy, worldz = getCursorPosition() guiSetVisible(rightclickWindow,true) guiSetText(headline["rightclickmenu"],itemInfo) local whith = guiLabelGetTextExtent (headline["rightclickmenu"]) guiSetPosition(rightclickWindow,screenx,screeny,true) local x,y = guiGetSize(rightclickWindow,false) guiSetSize(rightclickWindow,whith,y,false) guiBringToFront(rightclickWindow) setElementData(rightclickWindow,"iteminfo",{itemName,itemInfo}) end end function hideRightClickInventoryMenu () guiSetVisible(rightclickWindow,false) end function onPlayerClickOnRightClickMenu (button,state) if button == "left" then local itemName,itemInfo = getElementData(rightclickWindow,"iteminfo")[1],getElementData(rightclickWindow,"iteminfo")[2] hideRightClickInventoryMenu () playerUseItem(itemName,itemInfo) end end addEventHandler("onClientGUIClick",headline["rightclickmenu"],onPlayerClickOnRightClickMenu,false) Warning: local itemName,itemInfo = getElementData(rightclickWindow,"iteminfo")[1],getElementData(rightclickWindow,"iteminfo")[2] expected element at arg1 , got nil Error : local itemName,itemInfo = getElementData(rightclickWindow,"iteminfo")[1],getElementData(rightclickWindow,"iteminfo")[2] attempt to index a boolean value. Warning : guiSetVisible(rightclickWindow,false) execpted gui-element at argument 1 , got nil. PS: This is a part of script . (And i search in script if that element is destroyed , but it isn't)
  10. They have the same problem with grids. EDIT : i looked for that functions ... nothing.
×
×
  • Create New...