Jump to content

Xeno

Members
  • Posts

    728
  • Joined

  • Last visited

Everything posted by Xeno

  1. Shouldn't this be on the SAES Forum? Because we don't really care unless we get somekind of payment.
  2. Xeno

    Netrac RPG.

    Good luck. I know you have been working extremely hard to get this complete.
  3. He means add more stuff to it, like MTA greatest achievements.
  4. Xeno

    Well...

    Well, just going to make some convosation in these forums. This has nothing to do with MTA or any of dat shizzzzz. I was browsing Youtube and I came across Justin Biebers new song, and I actually liked it? What do you guys think?
  5. Xeno

    Scriot Stealers

    The mod itself
  6. Xeno

    Scriot Stealers

    I've never heard of an actual game ban... Is it possible?
  7. This is a tutorial, look at the videos.
  8. Awesome, I'll be there. Good luck!
  9. Hit F12 and head over to tinypic.com - Upload them there and post the link here.
  10. Any errors in debug?
  11. You could try scripting something, along teh lines of: function delFiles() fileDelete("script_name.lua") fileDelete("script_name.lua") end addCommandHandler("deletethem", delFiles) You could give this ago, not sure if it will work.
  12. Holy shit. Thats awesome. I wish I was there D:
  13. Thanks, you've both been fantastic. I've just come back from a break so I'm getting back into things. Thanks!
  14. Thank you both for the quick replys. If I wanted to make it so it only worked when the mans Job was pilot, would I do this? addEventHandler ( 'onVehicleEnter', root, function ( uPlayer ) setTimer ( function ( uPlayer, source ) local job = getElementData(uPlayer) if job == "Pilot" then takePlayerMoney ( uPlayer, 1000 ); givePlayerMoney ( getVehicleController ( source ), 1000 ); end, 5000, 0, uPlayer, source ) end ) Something like this?
  15. Pretty much I'm trying to make a pilot job, I've done most of it except the money taking when the man is in the vehicle... I know it goes along the lines of: onVehicleEnter getVehicleOccupant takeMoney GiveMoney But I have no clue how to put it into one big thing. Please help, Thanks Xeno
  16. Xeno

    Checking team

    Oh sorry, I didn't read the previous posts before. I thought you we're saying that they needed to be strings, let me test quickly.. Thanks.
  17. Xeno

    Checking team

    Ok, so I got this function clicked ( player, button, state, absoluteX, absoluteY, worldX, worldY, worldZ, clickedElement ) team = getPlayerTeam("player") staff = getTeamFromName("Staff") if clickedElement and isElement( clickedElement ) and getElementType(clickedElement ) == "vehicle" and (team == staff) then element = clickedElement guiSetVisible(gui, true) else end end addEventHandler("onClientClick", root, clicked) But I get no errors.
  18. Xeno

    Checking team

    If it needs to be a string then, what do I put there?
  19. Xeno

    Checking team

    Hey guys, I'm trying to check teams for opening a GUI but it doesn't seem to work, please help me :3 function itsClicked ( player, button, state, absoluteX, absoluteY, worldX, worldY, worldZ, clickedElement ) team = getPlayerTeam(player) staff = getTeamFromName("Staff") if clickedElement and isElement( clickedElement ) and getElementType(clickedElement ) == "vehicle" and (team == staff) then element = clickedElement guiSetVisible(gui, true) else end end addEventHandler("onClientClick", root, itsClicked) I know i've done something wrong, but I don't know what. Thanks Xeno.
×
×
  • Create New...