Jump to content

Thelastride

Members
  • Posts

    172
  • Joined

  • Last visited

Posts posted by Thelastride

  1. Ha - Ha - Ha your english

    made my day

    I give a suggestion to you, If you are not good at something don't use it.

    helloo

    this arabic company

    that is not same

    http://www.delux-host.com <-------- this german company

    http://www.delux-host.net <-------- this arabic company

    we understanding that we Private company

    we looking for the best way to host online games servers

    and we make the payment easy for everyone in the world

    Delux-host.com was stupid host, same goes for yours.They had no support and buggy control panel if i remember.Learn english :lol:

  2. there's no freedom of speech here.

    Here's why:

    Solidsnake14 wrote:

    The following is a warning which has been issued to you by an administrator or moderator of this site.

    Constant trolling, I recommend you to stop doing this.

    sockz wrote:

    Give me a few examples please!

    Solidsnake14 wrote:

    viewtopic.php?f=91&t=46425&p=462242&sid=824bcef01c2dbea384af6c67964f4283#p462242

    viewtopic.php?f=114&t=46490&p=462787&sid=824bcef01c2dbea384af6c67964f4283#p462787

    viewtopic.php?f=115&t=46056&p=460041&sid=824bcef01c2dbea384af6c67964f4283#p460041

    viewtopic.php?f=105&t=46878

    I agree , Solidsnake is too strict on us and never misses a time to use power :evil:

    He also deletes our post for very small reasons like saying, "this server is bad"

  3. I was thinking for how long you think MTA:SA is going to stay with players playing it.As you know gta sa was released in 2006 and its been 6 years now and still people enjoying it.Server player counts increased more these years so what you think how long MTA is going to stay, whats your opinion?

    I think more 4 years because there are no other good freeroam games even comparable to gtasa and MTA makes it perfect.

    I started this topic because i am away from mta (only on forums) and would like to see it just like this when i come back later after 1-2 years.

  4. MySQL root doesn't need password as it should be added by the user.

    and? what you wanna prove? that you know better than me?. Listen people don't come on internet to know how much you know , they come to get help.

    Yes mysql root doesn't have a password and it needs to be added by user and if user doesn't add then he can get hacked by someone so its a security issue.Its written on their website so stop making useless post.

    User should remember to change/set a password and he should also change username from "root" to something else as its not recommended.

  5. xampp is bad anyways.

    XAMPP is for testing purposes mainly for your local machine, if you get into problems using XAMPP, and posting it at their forum, they will stamp you "IDIOT" in your head, and saying "XAMPP has never been made and probably will never be made for serious hosting".

    XAMPP is made for testing purpose. And it is insecure, and heavy.

    http://sourceforge.net/projects/miniser ... e/download

    Uniform server is the way to go.

    and here's why:

    1. Security

    2. Lightweight (xampp 51MB, XAMPlite 28MB. Uniform Server 8.75MB).

    3. Easier to use.

    4. twice as fast

    (and using this service means he controls your database, not that im saying he's using xampp but still, just so you know).

    Stop spreading BS information to people, XAMPP is nothing but php,mysql,phpmyadmin ,apache and all the things in 1.Its same and can be used for servers.It can be installed easily

    You are saying this because you read this on their website : http://www.apachefriends.org/en/xampp-linux.html

    and talking nonsense.

    Those security issues can be fixed, its not big thing

    Here a list of missing security in XAMPP:

    The MySQL administrator (root) has no password.

    The MySQL daemon is accessible via network.

    ProFTPD uses the password "lampp" for user "nobody".

    PhpMyAdmin is accessible via network.

    Examples are accessible via network.

    MySQL and Apache running under the same user (nobody).

    All can be fixed easily so stop acting like a teabag without knowledge and spreading wrong information to others.You can use it for professional things, atleast for a mta server or a website but if you have a huge company than its other thing and you may consider different options.Internet is full of people like you who spread wrong information :x without knowledge.IF you dont know "shutup"!

  6. You don't see because you removed after I said.

    It was never Galaxy host in their TOS, maybe you just mixed 2 websites after visiting there and ashpire servers.I had read their TOS at first day so maybe you need a doctor for brain checkup :lol:

  7.     local root = getRootElement() 
        localPlayer = getLocalPlayer() 
        local counter = 0 
        local starttick 
        local currenttick 
          
            function addColumns() 
                 exports.scoreboard:scoreboardAddColumn("FPS") 
                 setElementData(localPlayer,"FPS",0) 
            end 
            addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), addColumns) 
            
        addEventHandler("onClientRender",root, 
            function() 
                if not starttick then 
                    starttick = getTickCount() 
                end 
                counter = counter + 1 
                currenttick = getTickCount() 
                if currenttick - starttick >= 1000 then 
                    setElementData(localPlayer, "fps", counter) 
                    counter = 0 
                    starttick = false 
                end 
            end 
        ) 
          
          
        fpstable = {} 
        function averageFPS() 
            avgseconds = 10 
            for i = 0, avgseconds do 
                if i+1 <= avgseconds then 
                    fpstable[i+1] = fpstable[i] 
                end 
                fpstable[0] = getElementData(localPlayer, "fps") 
            end 
            totalframes = 0 
            for k, v in pairs(fpstable) do 
                if v ~= false then 
                    totalframes = totalframes + v 
                end 
            end 
            avgfps = math.round(totalframes / avgseconds, 0) 
            setElementData(localPlayer, "avgfps", avgfps) 
        end 
          
        setTimer(averageFPS, 1000, 0) 
          
        function math.round(number, decimals, method) 
            decimals = decimals or 0 
            local factor = 10 ^ decimals 
            if (method == "ceil" or method == "floor") then return math[method](number * factor) / factor 
            else return tonumber(("%."..decimals.."f"):format(number)) end 
        end 
    

    player was nothing.

  8. I did not understand but try this

    Yes good try

    function joinTime () 
        setElementData ( source, "joinTime", getTickCount() ) 
    end 
    addEventHandler ( "onPlayerJoin", root, joinTime ) 
    function checkonline (player) 
       local timeon =( getTickCount() - getElementData ( player, "joinTime")) /60000  
       outputChatBox("Time spent in server: "..timeon.. " minutes.",player,255,255,255) 
    end 
    addCommandHandler ( "timeinserver",checkonline) 
      
    

    Now you can use a for loop to check who is online for most time.

  9. Hello!

    If you're just thinking to host game server, and you do not have any knowledge with Linux operating system, you can go with game server host provider, they have professional workers who will help you running your game server.

    For "gsp", you can find the hosting talk section, for vps'es, try domvps(they have good reviews)

    If you have linux knowledge everyone has it.

    Go for linux vps.Its easy to use, you just need to use some commands.Many tutorials on net , its not that hard.

  10. There is no doubt of Matthew doing bad things.I have been told by old Vedic gaming owners that they trusted him and his host and now he is selling their script for 5-50$.Thats why they changed their host and running with new name Arsenic

  11. serverFFS is really bad, I've a webhost there, the control panel is alot down, tons of bugs.

    Join another company host.

    Maybe you don't know how to use their control panel.Its bug free and user friendly and support is nice and quick.

×
×
  • Create New...