Jump to content

Jaysds1

Members
  • Posts

    4,961
  • Joined

  • Last visited

Everything posted by Jaysds1

  1. Jaysds1

    Mapuploader

    um, it's kinda hard to explain, I would just show you some pages to learn off: Intro to "PHP MySQL" - http://w3schools.com/php/php_mysql_intro.asp PHP MySQLi Functions - http://w3schools.com/php/php_ref_mysqli.asp MySQL/SQL - http://w3schools.com/sql/default.asp
  2. Jaysds1

    Mapuploader

    If you made a map uploader, I hope you used a MySQL database to keep track of all the maps, as it would be easy just to query for all the maps and display all of them on the web page. Learn more about Web Developing/Scripting here: http://w3schools.com
  3. Next time read this please: https://forum.multitheftauto.com/viewtopic.php?f ... 12#p495912
  4. I've never noticed that, thanks for showing me that. Anyways, download that file here: http://www.dll-files.com/dllindex/dll-f ... l?msvcp110 after downloading it, open the "readme.txt" file.
  5. Download and run this MTADiag, then post the generated MTA:Pastebin URL here please
  6. Jaysds1

    The last reply

    Same, Plus I hope MTA comes out with a mod for it too!
  7. Jaysds1

    The last reply

    lol, I played GTA IV and it's not what I expected it to be I can't wait til GTA V comes out
  8. Jaysds1

    The last reply

    Yup, and Nice Profile Pic
  9. try this: local levels = { [200] = "1", [500] = "2", [600] = "3", [1000] = "4", [2000] = "5", [3000] = "6", [4000] = "7", [5000] = "8", [9000] = "9" } addEventHandler( "onPlayerWasted",root, function(_, killer) if (killer and killer ~= source) then local Rep = tonumber(getElementData(killer, "Reputation")) or 0 local kName = getPlayerName(killer) local sName = getPlayerName(source) setElementData(killer, "Reputation", Rep + math.random ( 20, 50 ) ) if levels[Rep] then setElementData(killer, "Rank", ":Reputation/Reputation/Rank/Lvl".. levels[Rep] ..".png") -- :Reputation/Reputation/Rank/Lvl1.png triggerClientEvent ( killer, "playSound", killer ) end end local Rep = tonumber(getElementData ( source, "Reputation" )) or 0 setElementData ( source, "Reputation", Rep - math.random ( 20, 50 ) ) end) addEventHandler ("onPlayerLogin", root, function (_,curAcc) setElementData(source, "Rank", getAccountData(curAcc, "Rank") or "0") setElementData(source, "Reputation", getAccountData(curAcc, "Rep") or 0) end) function saveData(source, acc) if not acc or isGuestAccount(acc)then return end setAccountData (acc, "Rnk", getElementData(source, "Rank")) setAccountData (acc, "Rep", getElementData(source, "Reputation")) end addEventHandler ("onPlayerQuit", root, function () saveData(source, getPlayerAccount(source)) end) addEventHandler ("onPlayerLogout", root, function (acc) saveData(source, acc) end) And please tell me if there's an error or why it's not working!
  10. Jaysds1

    The last reply

    Lol, nice one, but I never knew you had different face expressions
  11. Hm, The only thing I could think of is using proxy, but other than that, you could make a hosting company host your server: https://www.multitheftauto.com/hosters/
  12. Already checked: https://www.virustotal.com/en/file/1deb ... 375685352/ Plus it looks promising. You could also download this file on JWorld137 Hosting: http://tinyurl.com/jw137-jhub
  13. ya, show him that then he should be able to add it to the server
  14. Jaysds1

    The last reply

    That's some ugly face
  15. Ya, and these are part of scripting for your server. Here's where you should start off: https://wiki.multitheftauto.com/wiki/Main_Page
  16. Ya, you should also post how they could upload their files to the server, the server's Spec's and how it's secure meaning you wouldn't steal any of their resources or anything.
  17. Are you going to be hosting your server on your computer? or online? If you want to connect your server to MySQL you could use the built-in MTA functions which would require less setting up for connecting to databases. MTA MySQL Functions BTW, Read the example as they are very useful.
  18. Can you please download and run this MTADiag, then post the generated MTA:Pastebin url here please. This would show us the problems and we could either give you downloads to fix the problem or help us fix the problem for later versions in the program. BTW Welcome to MTA
×
×
  • Create New...