Jump to content

Woovie

Retired Staff
  • Posts

    1,093
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Woovie

  1. MTA team is awesome. Quick working on issues.
  2. On NR we have some creative anti cheat. If you try to spawn something that we have disallowed, it won't. And if you DO manage to spawn it or get a minigun for example, it outputs the chat that you got ahold of one. So it is rather handy for us as we have one of the, if not the most, popular server in MTA. Many moderators too.
  3. Woovie

    ACL management

    No problem. Once again, I highly think they need to add this to the final release. It is rather ridiculous..
  4. Woovie

    ACL management

    You need to add the resouce webadmin to the Admin ACL. I had the same issue. It should be preset like that. But no. It isn't.
  5. Here I will be nice and write it for you. Here is name color. I have explained everything for you in it. function nickColChange ( player, commandName, r, g, b ) -- This will make a function called "nickColChange". It will be done on the player when he types the commandName and 3 color values ranging from 0-255. setPlayerNametagColor ( player, r, g, b ) -- This physically sets the data to the players' name. outputChatBox ("#00FF00Your name has been set with these color values: "..r..", "..g..", "..b..""), player, 255, 255, 255, true ) -- This outputs to the chatbox what colors you set. end addCommandHandler ( "nickcol", nickColChange ) -- This says set the commnad of /nickcol to do function nickColChnage. nickcol = commandName. Example: /nickcol 255 255 0 Would result in[NR]LeetWoovie And the chatbox will output Your name has been set with these color values: 255, 255, 0. Here is the clan command. This one is fairly simple. I also made it so you can create a team corresponding to the tags. function clanNameCol ( player, commandName, r, g, b, clantag, teamset ) local clant = getClientName ( player ) if teamset == 1 then setPlayerNametagColor ( player, r, g, b ) setPlayerNametagText ( player, ""..clantag.." "..clant.."" ) local newteam = createTeam ( clantag, r, g, b ) setPlayerTeam ( player, newteam ) outputChatBox ("#00FF00Your name has been set with these color values: "..r..", "..g..", "..b.." and with the tag "..clantag.." on the "..clantag.." team."), player, 255, 255, 255, true ) else setPlayerNametagColor ( player, r, g, b ) setPlayerNametagText ( player, ""..clantag.." "..clant.."" ) outputChatBox ("#00FF00Your name has been set with these color values: "..r..", "..g..", "..b.." and with the tag "..clantag.."."), player, 255, 255, 255, true ) end end addCommandHandler ( "setgroup", clanNameCol ) Example 1: Player name is bob. /setgroup 255 255 0 [NR] 1 will result in [NR]bob on team [NR] And the chatbox will output Your name has been set with these color values: 255, 255, 0 and with the tag [NR] on the [NR] team. Example 2: /setgroup 255 255 0 [NR] 0 will result in [NR]bob without a team and the chatbox will output Your name has been set with these color values: 255, 255, 0 and with the tag [NR]. I have not tested it. Most likely an error somewhere...
  6. It isn't our fault you use a bad format and compression
  7. Wow you copied this from another topic. Yes it is possible and rather easy. Just do it yourself.
  8. Go Ransom. Wonderful post. I think it is rather ridiculous that anyone from SA-MP is here unless they actually play MTA, which would be highly doubtable.
  9. Yes, 0-28 is definitely ports. Well for me it was.
  10. I already had the idea but that was 4 days ago so i didn't wanted to start again^^ but i will definitively make one with serverside objects =) YAY I love you Hankey.
  11. Can you make an alternative so where people can edit together ? AKA Serverside ? It would be really nice.
  12. We can do it on FRC. We have a /attach command. =)
  13. that doesn't explains how he got a new serial... Yeah.. I think he was reinstalling and rejoining.
  14. I like to play all gamemodes, so I play free roam. But I play on my server, because I do agree. All the other free roams are too split. We have teams, guns, vehicles. You can DM if you want! You can free roam if you want! You can do anything.. Just find the right server and don't judge all free roams on a single basis.
  15. Your disc is already 1.1 and that is the issue. Just downgrade. Done. Reinstall.
  16. Like this. http://development.mtasa.com/index.php? ... _functions
  17. We give option. We let the player do what they want to do.
  18. Woovie

    onMouseOver

    Ah, enter/leave. Too used to Java..
  19. function playerSkin ( player, commandName, id ) setPlayerSkin ( player, id ) end addCommandHandler ("setskin", playerSkin )
  20. Woovie

    onMouseOver

    I think onMouseOver should be available. Or is there a way to script this ? I want a gui with an image and on over, it shows something else.
  21. Not all free roams are the same... You judge too soon. The Free Roam Chaos server has a mix of Free Roam and a DM of sorts. We are creating a /dm on the server where you will be teleported to an area where you can fight and it will be closed off from the rest of the people so no one will bitch. We also have had thoughts of building a race objective into the server. We recreated the drift track and the dirt track in the sky and have teleports to them. We have much racing stuff. Today I am incorporating teams into the server and it should bring around more fighting. We will eventually have it so you can do anything you can do on other servers. Hopefully. =)
  22. The NR server does this too. After about 20 people they start timing out in like chunks of 4 players at a time. What's the issue ?
×
×
  • Create New...