Jump to content

NinetyNine

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by NinetyNine

  1. addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), function() exports.scoreboard:addScoreboardColumn("Total Win's") end) addEventHandler("onPlayerPickUpRacePickup",getRootElement(), function(pickupID, pickupType, vehicleModel) if pickupType == "vehiclechange" and vehicleModel == 425 then if getPlayerAccount(source) and not isGuestAccount(getPlayerAccount(source)) then increaseAccountData(source) outputChatBox("*HUNTER ALERT: "..getPlayerName(source).." has found the Hunter and get +1 win!",getRootElement(),25,125,225, true) else outputChatBox("*HUNTER ALERT: "..getPlayerName(source).." has found the Hunter, but wasn't logged in, login or register!",getRootElement(),25,125,225, true) end end end) function increaseAccountData(player) local account = getPlayerAccount(player) local accountData = getAccountData(account,"hunterPoints") if not accountData then setAccountData(account,"hunterPoints",1) setElementData(player,"Total Win's",1) else setAccountData(account,"hunterPoints",tonumber(accountData)+1) setElementData(player,"Total Win's",tonumber(accountData)+1) end end addEventHandler("onPlayerLogin",getRootElement(), function() local account = getPlayerAccount(source) local points = getAccountData(account,"hunterPoints") if not points then setElementData(source,"Total Win's",0) else setElementData(source,"Total Win's",points) end end) Try, its kinda morning here maybe i made something wrong
  2. for music i found two resources from mtasa.com https://community.multitheftauto.com/ind ... ils&id=976 https://community.multitheftauto.com/ind ... ls&id=1826
  3. Im not very smart in tables scripting but you can try to add after for carValue, carro in ipairs(vehicles) do this if getElementModel(carro) == 599 then
  4. Nothing unique, everything taken from other servers... sucks and also wrong section
  5. Always take screenshots and also avoid playing with clans that dont have servers(those lasts like week)
  6. Not possible yet but i heard 1.1 has streaming option
  7. Wrong section too ? Whats private should stay private !
  8. NinetyNine

    Argentinian Host!

    Or find some Argentinian game servers renting company and if they dont offer MTA servers then just send them e-mail and im sure they make you offer
  9. Hmm if i remember correctly then in 1.1.1 race icons were bugged sometimes thought But yeah... old good times ^^
  10. Hai, im not sure if anyone already have suggested it but please add history to console, like when i type to console /say hello then i can use my down arrow and it finds it without need to type again
  11. Great tutorial, thanks for it
  12. Its my second resource, made it cause i was bored Players can rate map at end of map 1. Horrible 2. Bad 3. Average 4. Good 5. Excellent It uses key binding so you have to just press number If any map gets over 20 votes and overall rating is 1 then this map gets deleted (you can disable it from map_rating_s.lua) Download: https://community.multitheftauto.com/index.php?p= ... ls&id=2379 Picture:
  13. Hey hey, its my first (normal) script and i would like to share it with you it displays text on screen, depending on command left or middle Command usage: /lsay colour text OR /tsay colour text as colour you have to type white,red,green,blue or yellow Please add suggestion what you would see in new versions and what should be better Download: https://community.multitheftauto.com/ind ... ls&id=2375 Screenshot:
×
×
  • Create New...