Jump to content

Ma5ter

Members
  • Posts

    37
  • Joined

  • Last visited

Everything posted by Ma5ter

  1. Ma5ter

    Download Speed

    15 Download 1.5 Upload. I've already tested it before.
  2. I have hotspot shield but they dont have "custom" locations. So i'm not sure which VPN or Proxy has AQ as the country and works.
  3. This is just a little thing for giggles, is there a way I can change my country flag/code to AQ? I don't have access to the scripts on the server I go to but I do have access to runcode and my own network, if it helps knowing that.
  4. Ma5ter

    Download Speed

    If it helps knowing, I was using Nginx and the host was using localhost, since I dont have money for a webhost service. Would that be causing the timeouts clients were having? Also, If I got one of these MTA hosting services would the download (the 2.3 GBs) be any faster than it already it is? (took me around an hour and a half).
  5. Ma5ter

    Download Speed

    Direct, since http didn't work. It would timeout whenever someone would download from it.
  6. I'm out of ideas and I have a server with a 2.3 GB download with mods that took a very long time to add in. Is there anyway I can make the downloads for clients faster? Without removing scripts/mods? I also have already tried nginx and it would just timeout players or the webserver itself would timeout.
  7. Ma5ter

    I need a host.

    Oh ok I see. Now it's just finding a host that wont cost too much...
  8. Ma5ter

    I need a host.

    Why couldn't I have the MTA server on the same host? Considering the upload.
  9. Ma5ter

    I need a host.

    I'm ahead of you regarding the HTTP download server. I set up Nginx, though i'm using windows. The download has taken people 2 hours, but thats not reasonable obviously. I'm also using Wamp for a forum, it doesnt have a domain yet...that's a work in progress. If you need a number, the download's 2.50 GBs.
  10. Ma5ter

    I need a host.

    The issue is moreso my internet connection. I have 20 mbps down, 1.96 mbps up and the download the client's need is pretty large since theres a lot of mods. That's why I need performance.
  11. Ma5ter

    I need a host.

    So pretty much, I have a RPG server, it's all ready, all configured etc. The subject says it all, I need a hosting service that offers a decent amount of performance but also a reasonable price. Since i'm barely starting and a good upload speed of course. Because my server has a large amount of resources (906 of em). I'll only need around 30 slots, but speed is a higher concern at the moment. Maybe I'll even "bribe" the person who gives me the best answer ingame, perhaps 10k ingame money so you can have a nice car
  12. Ma5ter

    Aexec on IRC

    I'm not sure what i have wrong here, its supposed to behave just like the console command except you use it from the irc resource, i checked if any errors were made, any warnings, or any outputs on chat that say "test ok" to indicate it did indeed read my code, and it didnt read my code. So im confused and like I said, idk what's wrong. addIRCCommandHandler("!aexec",function(Me,Cmd,pName,Cmd,...) if ( player ) then outputChatBox ( "test ok", getRootElement())--testing only if ( not pName or not Cmd ) then outputChatBox ( "test ok", getRootElement())--testing only outputChatBox("Syntax: /"..Cmd.." [player name] [cmd name] [arguments]", Me, 255, 0, 0) return end local args = table.concat({...}," ") local target = getPlayerFromName(pName) if not target then outputChatBox ( "test ok", getRootElement())--testing only outputChatBox("Player does not exist!",Me,255,0,0,true) return end if executeCommandHandler(Cmd,target,tostring(args)) then outputChatBox ( "test ok", getRootElement())--testing only outputChatBox("Command Execution successful!", Me, 0, 255, 0) else outputChatBox ( "test ok", getRootElement())--testing only outputChatBox("Command Execution failed!", Me, 255, 0, 0) end else outputChatBox("This.",Me,255,0,0) end end )
  13. Ma5ter

    Blip Hide

    The script still isnt hiding my blip.
  14. Nobody is spectating and text doesnt show during download, but afterwards. --server DownloadDisplay = textCreateDisplay() Text = textCreateTextItem("Welcome to Ma5ter's World, the download is large and we apologize for that inconvenience. ", 0.5, 0.5) textDisplayAddText(DownloadDisplay, Text) addEventHandler("onPlayerJoin", root, function() local player = getRandomPlayer() local x, y, z, x2, y2, z2 = getCameraMatrix(player) textDisplayAddObserver(DownloadDisplay, source) -- slowly fade the camera in to make the screen visible fadeCamera(source, true, 5) -- set the player's camera to a fixed position, looking at a fixed point playSound("mall.mp3", true) setCameraMatrix( x+0.5, y, z, x2, y2, z2 ) end) addEvent("onClientDownloadFinish", true) addEventHandler("onClientDownloadFinish", root, function() if textDisplayIsObserver(DownloadDisplay, source) then textDisplayRemoveObserver(DownloadDisplay, source) end end) --client resourceRoot = getResourceRootElement (getThisResource()) function checkTransfer() if isTransferBoxActive() == true then setTimer(checkTransfer,1000, 1) end end addEventHandler("onClientResourceStart", resourceRoot, checkTransfer) Timer = setTimer(function() if not isTransferBoxActive() then triggerServerEvent("onClientDownloadFinish", localPlayer) if isTimer(Timer) then killTimer(Timer) end end end, 1000, 0)
  15. Ma5ter

    Blip Hide

    The script isnt hiding my blip, I did change the parameter to a string and players can still see my blip.
  16. Ma5ter

    Blip Hide

    Code didnt work, here's the warning, also yeah I got the code from the playerblips resource since i'm still new to this. WARNING: [gameplay]\bliphider\playerblips.lua:2: Bad arguement @ "addCommandHandler" [Expected String at argument 1, got nil]
  17. I want to know what i'll need to have clients spectate other clients that are finished downloading in game. I do not expect you to do this for me but, at the very least I want to know what i'll need in order to do this. Doing this because my download is huge. I know i'm asking a lot but how would I play music during downloads too?
  18. Ma5ter

    Blip Hide

    Was trying to make a script that hides my blip but it doesnt hide my blip, nor did it output any chat in the chatbox. root = getRootElement () players = { } resourceRoot = getResourceRootElement ( getThisResource () ) addCommandHandler ( hideme, function onResourceStart ( resource ) for id, player in ipairs( getElementsByType ( "player" ) ) do if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then destroyBlipsAttachedTo ( source ) outputChatBox ( "You are hidden.", source, 255, 255, 255, true ) end end end true, true) function destroyBlipsAttachedTo(player) local attached = getAttachedElements ( player ) if ( attached ) then for k,element in ipairs(attached) do if getElementType ( element ) == "blip" then destroyElement ( element ) end end end end
  19. I found out that was my issue, kept editing it while the server was running. Thanks for the help guys.
  20. How am I going to get an uncompiled version of a script that isnt mine, the scripts are from the community.
  21. Is there a way I can fix this?
×
×
  • Create New...