Jump to content

sackforever

Members
  • Posts

    15
  • Joined

  • Last visited

Details

  • Gang
    None really

sackforever's Achievements

Square

Square (6/54)

0

Reputation

  1. Hello , i've got this bug in my DayZ server , where i aim my M4 and it looks like a shotgun , the gun skill is low i try the "setPlayerStat" and "setPedStat" functions but it doesn't work , if you could help me i would be thankful!
  2. I need help with making an resource for my race server i will try and give an example Ex. /gamelist and it opens a GUI with photos and you can click it sending the player to other type of gamemode on the same server (From race to shooter or play for example) if you could help me i would be appreciated Sackforever , Thanks.
  3. Wow thanks bro!You just helped me a lot! Oh my god i need this so much! Thanks man so much so much so much!
  4. Hello,i heard that you can make a function to create like icons on your F11 map,I have tried to do some but i couldn't could someone just do 1 blip example for me Thanks.
  5. Is it possible to make a movable cameraMatrix from ex. the coords 0 , 0 , 0 to 9,9,9 While on the login screen? If yes could you help me and my login screen is bugged too if you could help in that two i would appreciate that http://prntscr.com/1xp199 http://prntscr.com/1xp1eu
  6. Well thanks at least for trying to help me
  7. Sorry just trying to help.
  8. You forgot to add the ")" at the end of the bindKey on the first post.
  9. Hello there im here today i would like to show my idea to everyone about starting a Lua scripting project or a Gaming Community with a lot of gamemodes for MTA:SA Thanks for reading this,reply if you want to. http://www.galaxycommunity.webs.com
  10. Should i make it on another? Well thanks.
  11. Hello there im here today i would like to show my idea to everyone about starting a Lua scripting project or a Gaming Community with a lot of gamemodes for MTA:SA Thanks for reading this,reply if you want to.
  12. You can download the login.lua im trying to fix http://www.mediafire.com/download/wgglyg4wy439f0b/login.lua sorry for the spam and thanks.
  13. Like there is more than one spawn location could i do a math.random without messing the rest of the scripts? I sent a bit of the code there,thanks.
  14. function playerLogin(username, pass, player) local playerID = getAccountData(getPlayerAccount(player), "playerID") account = getPlayerAccount(player) local x, y, z = getAccountData(account, "last_x"), getAccountData(account, "last_y"), getAccountData(account, "last_z") local skin = getAccountData(account, "skin") createZombieTable(player) if getAccountData(account, "isDead") then spawnDayZPlayer(player) return end spawnPlayer(player, x, y, z, math.random(0, 360), skin, 0, 0) fadeCamera(player, false) setCameraTarget(player, player) playerCol = createColSphere(x, y, z, 1.5) setElementData(player, "playerCol", playerCol) attachElements(playerCol, player, 0, 0, 0) setElementData(playerCol, "parent", player) setElementData(playerCol, "player", true) for i, data in ipairs(playerDataTable) do local elementData = getAccountData(account, data[1]) if not elementData and data[1] ~= "brokenbone" and data[1] ~= "pain" and data[1] ~= "cold" and data[1] ~= "infection" and data[1] ~= "currentweapon_1" and data[1] ~= "currentweapon_2" and data[1] ~= "currentweapon_3" then if data[1] == "bandit" then else elementData = 0 end end setElementData(player, data[1], elementData) end setElementData(player, "logedin", true) local weapon = getElementData(player, "currentweapon_1") if weapon then local ammoData, weapID = getWeaponAmmoType(weapon) giveWeapon(player, weapID, getElementData(player, ammoData), true) end local weapon = getElementData(player, "currentweapon_2") if weapon then local ammoData, weapID = getWeaponAmmoType(weapon) giveWeapon(player, weapID, getElementData(player, ammoData), false) end local weapon = getElementData(player, "currentweapon_3") if weapon then local ammoData, weapID = getWeaponAmmoType(weapon) giveWeapon(player, weapID, getElementData(player, ammoData), false) end setElementModel(player, getElementData(player, "skin")) setElementData(player, "admin", getAccountData(account, "admin") or false) setElementData(player, "supporter", getAccountData(account, "supporter") or false) triggerClientEvent(player, "onClientPlayerDayZLogin", player) end addEvent("onPlayerDayZLogin", true) addEventHandler("onPlayerDayZLogin", getRootElement(), playerLogin) Skins = {}
  15. So the login screen of my DayZ server is bugged ,i can login and register but when i login the camera is set to vinewood and the player is not able to spawn could you please help me ?
×
×
  • Create New...