Jump to content

Jaysds1

Members
  • Posts

    4,961
  • Joined

  • Last visited

Everything posted by Jaysds1

  1. You have to own a website with MySQL here's one: http://www.000webhost.com/480103.html This one has MySql and phpMyAdmin, and it's free. In MySql you have to Create new database and user, after creating it, there's an Database name, username, host and password. Put that in your script... Then go to your phpMyAdmin (there's a link in the top), after when your in your phpMyAdmin
  2. But seriously, don't you use the washroom? Of Course, so the RolePlaying Servers will like this...
  3. Actually this is more rping than ever... I like this.
  4. Jaysds1

    idle cars?

    i know that they blow up the cars and set the respawn delay to 1 or 10secs... but I don't know how to check if a player is in a vehicle, so they don't die.
  5. At the beginning i have the same problem, but I think it's the ports... I'm not sure though.
  6. Jaysds1

    Problems

    ohhh, I 4got about the onPlayerJoin, Thanks again...
  7. What's your internet connection/speed?
  8. Jaysds1

    Problems

    JR10, It doesn't work... i added my coordinates and restarted it but the camera is blank/black.: local Table = { {1636.267578125,-2286.37890625,72.458694458008, 1682.93359375,-2286.330078125,13.508057594299}, {1786.759765625,1450.986328125,92.410263061523, 1688.240234375,1448.77734375,10.767894744873}, {-1685.783203125,-580.9912109375,272.26177978516, -1570.81640625,-455.7080078125,14}} local timer = {} function Show() local x, y, z, lx, ly, lz = unpack(Table[math.random(#Table)]) -- get a random value from the Table and unpack it to get the coords fadeCamera(source, true, 5) setTimer(setCameraMatrix, 100, 1, source, x, y, z, lx, ly, lz) setTimer(fadeCamera, 100, 1, source, true) setTimer(Show, 8000, 1, source) end
  9. Ok, remove that and just add: local r, g, b = getTeamColor(getPlayerTeam(player)) createBlipAttachedTo(player,2,1,r,g,b)
  10. Thanks, the software is great... There even having a sale, I might just buy it.
  11. Jaysds1

    Problems

    thanks, I never would have thought of that...
  12. Jaysds1

    Hydra .

    Are you signed in as Admin???
  13. Jaysds1

    My userbars.

    What's the length and width of these?
  14. Jaysds1

    Hydra .

    ok, Here then: addEventHandler("onVehicleStartEnter",getRootElement(), function(player) local account = getPlayerAccount(player) local accountName = getAccountName(account) if not isObjectInACLGroup ( "user." .. accountName, aclGetGroup ( "Admin" ) ) then toggleControl ( player, "vehicle_secondary_fire", false ) -- disable their fire key toggleControl (player, "vehicle_fire", false ) else toggleControl ( source, "vehicle_secondary_fire", true ) -- enable their fire key toggleControl (player, "vehicle_fire", true) end end)
  15. Jaysds1

    Hydra .

    ya, It's server side, Does it work?
  16. Jaysds1

    Problems

    How do you make the camera change based on a timer? function fadeCamera(source, true, 5) setCameraMatrix(source, 1636.267578125,-2286.37890625,72.458694458008, 1682.93359375,-2286.330078125,13.508057594299) setTimer(function() fadeCamera(source, true, 5) setCameraMatrix(source, 1786.759765625,1450.986328125,92.410263061523, 1688.240234375,1448.77734375,10.767894744873)end, 9000,0) setTimer(function() fadeCamera(source, true, 5) setCameraMatrix(source, -1685.783203125,-580.9912109375,272.26177978516, -1570.81640625,-455.7080078125,14)end, 9000,0) end Thanks for helping
  17. here: function(player) if (getControlState(player,"radar") == true) then setControlState(player,"radar",false) end end
  18. I made the script, I don't think there's anyway to stop gta from taking the gun, but rather give abck the gun...
  19. Jaysds1

    Hydra .

    sorry, I 4got to add the next end: addEventHandler("onVehicleStartEnter",getRootElement(), function(player) local account = getPlayerAccount(player) local accountName = getAccountName(account) if not isObjectInACLGroup ( "user." .. accountName, aclGetGroup ( "Admin" ) ) then if ( getControlState(player,"vehicle_fire") == true) then setControlState(player,"vehicle_fire",false) end if ( getControlState(player,"vehicle_secondary_fire") == true) then setControlState(player,"vehicle_secondary_fire", false) end end end)
  20. ohhh, you want to give the player the weapon with ammo?
  21. oh, wow, I never knew...
  22. Please don't double post and here: function(player) if player then getPlayerTeam(player) if (getPlayerTeam(player) == false) then -- OPEN THE GUI OR WHAT EVERY, THEN WHEN THEY CHOOSE A TEAM USE setPlayerTeam(player,"THE TEAM") local r, g, b = getTeamColor(getPlayerTeam(player)) createBlipAttachedTo(player,2,1,r,g,b) end end end
  23. check this: https://wiki.multitheftauto.com/wiki/Modules/MySQL
  24. don't double post... and show your scripts.
×
×
  • Create New...