Jump to content

Noki

Members
  • Posts

    851
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Noki

  1. https://wiki.multitheftauto.com/wiki/SmoothMoveCamera
  2. It's also a steaming poo on the security front. What do you suggest would make a better alternative?
  3. Welcome to the MTA forums. Consult Woovie or Sniper, as they are reviving DayZ development. /viewforum.php?f=105
  4. Lovely to see there is someone else with a 3DS passion. I have been working on a large scale pilot system. But due to the limitations of the GTA map, I was kind of stopped in my tracks. I made part of a map, but I stopped when I realized radar limitations in place. If you made this, you'd make my life a lot easier. Questions: what render settings would you recommend for maps?
  5. This intrigues me a lot. Which weapon did it replace? I'd love to see remote detonation, too. Good luck.
  6. Define misc_a please. And if there is any object or mod in the way of the connection that the vehicle uses, then it simply won't connect; no script needed.
  7. Noki

    scoreboard

    Use dxDrawText within the rectangle. local ping = getPlayerPing(thePlayer) dxDrawText(""..ping.."", rest of the arguments)
  8. Noki

    Player Banned

    How would you disable the default MTA ban system?
  9. Wait... So, someone has already converted them? Can you at least give me a list of the ones you want converted to GTA SA? I'm not going to do all of them, as it's a bitch to do the dummies and the other shit that comes with it. I've never done body parts, but I'll give it a try.
  10. Noki

    Mafia 2 Multiplayer

    Erm, people tried Squirrel and pawn. I don't mind squirrel, it's just pawn is yuck.
  11. Noki

    Mafia 2 Multiplayer

    Looks cool, except it uses PAWN.... Fuck.
  12. Check it doesn't request permissions. Is it compiled or decompiled?
  13. Make sure this is client-side in your meta.xml file. You can try removing the GUIEditor things, along with the table and renaming your GUI elements.
  14. Hi, I've added my columns, done all of that. But, I have no idea how to output the data onto the scoreboard column. Say I want to output players' money on to the scoreboard, how would I do that?
  15. Noki

    Use of 'elseif'

    Ah, thanks. This can be locked.
  16. Noki

    Use of 'elseif'

    I was looking through some scripts for my server, and I saw some of them contained elseif in them. I don't understand it, how it works or how it's different from 'else if'. I'd like it if someone could explain this to me, and possible give a script example. Thanks.
  17. And what's your local server called? Why would someone buy something they can't see?
  18. Using the same function, but replacing a different ID.
  19. Noki

    Windows 8.1

    Just saying, MTA works fine on my 8.1 PC. You tried compatibility settings too?
  20. A: It's your opinion, and if you're being judged because of that, then that's wrong. People are entitled to their own opinions and the ability to express them freely (Well, in Australia, they are). Q: Who do you think the next celebrity or high-class figure will die next?
  21. Give some ideas. I proposed removing them from the server browser. Simple.
  22. 1. Having a negative attitude won't help. Not to be a parent, but if you think bad stuff will happen, it most likely will happen. There's no point saying we're doomed, and just sitting there, watching it happen either. 2. There is always a way to stop stuff. Whether it be a nuclear bomb or 10 year old kids who spam the forum, you just need to fund the right way. 3. Change will happen regardless. People move on, die, get jobs, lose jobs etc. The thing is, it's what the change is. You can make it a good change, or a bad change. You need motivational attitude and will power, not a depressing hopelessness. This problem can be fixed. It won't be easy, and it will take time. It can be done, I just have no idea of how.
  23. Noki

    Buy Menu

    That was on purpose so he could do whatever he wanted. I didn't know exactly what he wanted. But yes, that is a good tip for you, Anubhav.
  24. Noki

    Buy Menu

    Client: E = guiCreateWindow(421, 269, 572, 475, "Buy Menu By Anubhav", false) guiSetVisible(E, false) button1 = guiCreateButton(62, 163, 169, 93, "Buy M4", false, E) function showGUI() guiSetVisible(E, true) showCursor(true) end bindKey ( "F6","down", showGUI ) function buyWeaponOnButtonClick() triggerServerEvent("buym4", thePlayer, thePlayer) end addEventHandler("onClientGUIClick", button1, buyWeaponOnButtonClick) Server: function buyweapon (thePlayer) if getPlayerMoney(thePlayer) >= 5000 then takePlayerMoney ( thePlayer, 5000 ) outputChatBox ( "#00FF00You Bought A M4.!",thePlayer, 255, 255, 255, true ) giveWeapon ( thePlayer, 31, 300 ) else outputChatBox ( "#00FF00You Don't Have Enough Money!",thePlayer, 255, 255, 255, true ) end end addCommandHandler ( "buym4", buyweapon ) addEvent("buym4", true) addEventHandler("buym4", root, buyweapon)
×
×
  • Create New...