Jump to content

12p

Members
  • Posts

    2,608
  • Joined

  • Last visited

Everything posted by 12p

  1. Did you use "if getLocalPlayer()" line?
  2. 12p

    HELP!!!

    If your graphics card has low power, you can also try reducing GTA graphics, in Settings ==> Video.
  3. Maybe using setGarageOpen
  4. How do you know that? It's not possible to "increase his powers with magic". It works at its best.
  5. Why can't you just ignore him? Comment about my idea:
  6. Okay, no need to be offensive.
  7. 12p

    ERORR pls help

    Use [ code ] [ /code ] tags please!!!!
  8. Can you also enable "Add files" button? The only way to add images to meta.xml is by manually editing.
  9. Show me your code. I'll tell you what's wrong. This library doesn't lag, it's just that you are using it wrong or something. I have a bad PC (1 GB RAM DDR1 166 MHz + Intel Pentium 4, 1 Core, 2.0 GHz) and doesn't reduce my FPS.
  10. This topic is about you giving free hosting to those "awesome" scripters that don't have money to get their own. Wanna example about what I was talking? Castillo14/SolidSnake14 was 15 when he reached the "Lua Perfection". The fact that someone is not 15 doesn't make him/her inmature. You sir have a bad definition about it.
  11. 12p

    HELP!!!

    He can, Charlie. In 1.0.4 there were engineLoadDFF engineLoadTXD engineLoadCOL engineImportTXD engineReplaceModel engineReplaceCOL engineRestoreModel engineRestoreCOL , that only worked with objects and vehicles. Now those work on skins also, but I think there's no reason for it to cannot replace objects.
  12. Be more specific, please. We do not guess what are you asking for. What do you mean by "resources"?
  13. I was bored and started to create my RP scripts. In 3 hours I managed to create a very beauty Login GUI + Language selector (with animations ) scripts from scratch. What will happen if I work on this by about one week?
  14. 1. I'm not a troll. 2. I'm not inmature. 3. Actually you look like the inmature guy, not me. There's absolutely no need to say "bullsh*t", "sh*t", "f*ck", or any of those words on EVERY post. 4. Good luck with your hosting.
  15. I've got a great idea. Define a special group of users (trustable users, like Castillo or John_Michael) to check all servers (ofc they must have time for it). Those servers that use clan special tags, or use stolen scripts, or just are copycats from others servers, will be reported by the group. MTA Team will do something to ban them, or give a warning to the owner of the server (the owner could be intelligent enough to do something for saving his server). Because if everyone can report the servers, there will always be a f*cker that will spam the report system. Also every server should NEED a valid e-mail, so MTA Team or anyone that has autority can contact the admin for any important reason.
  16. Maybe new zombie skins.
  17. Are you? I don't think so, I saw too many of these: Why can't a 15 years old boy (like me) ask you? NOTE: I don't need this, huh. I was just commenting.
  18. Your script may have some bugs if you restart it with players playing at the time. To prevent it, use this code, please. teamRed = createTeam ( "Red", 255, 0, 0 ) teamBlue = createTeam ( "Blue", 0, 0, 255 ) function balanceTeams ( player ) if source then player = source end local RedCount = countPlayersInTeam(teamRed) local BlueCount = countPlayersInTeam(teamBlue) if RedCount ~= BlueCount then if RedCount > BlueCount then setPlayerTeam ( player, teamBlue ) elseif RedCount < BlueCount then setPlayerTeam ( player, teamRed ) end else setPlayerTeam ( player, teamRed ) end outputChatBox ( "You've been moved to the "..getTeamName (getPlayerTeam(player)):lower ().." team!", player ) end addEventHandler ("onPlayerJoin", root, balanceTeams) for i, v in ipairs ( getElementsByType ( "player" ) ) do balanceTeams ( v ) end
  19. Hope this will impress SAMP people and make them come here. It's not very probable but it can happen
  20. It is. You need arc's "client_anim" library script before getting this one. Btw I think I just understood how this work, I'll try the way. If it works, I'll tell here how to use animations. EDIT: YEA!!! To use any animation you must take in account that this works pretty different from other things. First of all, it uses arc client_anim library, so you NEED TO HAVE that script (find it on race gamemode). In textlib_anim there are some animation presets you can use, like Animation.presets.dxTextMove. You can find the functions use at arc's library. For example, to move any dxText to position SCREEN_WIDTH * 0.9, SCREEN_HEIGHT * 0.7 in 1/4 seconds, use this code: local sw, sh = guiGetScreenSize ( ) Animation.createAndPlay ( yourDXText, Animation.presets.dxTextMove ( sw*0.9, sh*0.7, 250 ) )
  21. Give this line to your code. ouputChatBox ( "teamBlue: ".. tostring ( teamBlue ).. "; teamRed: ".. tostring ( teamRed) ) What does it output?
  22. Tell me the specific debug message ("ERROR: ...", "Warning: ...", etc)
  23. What does not work. Use /debugscript 3 If no errors were shown, debug by yourself (hope you know how to do it).
  24. Can you give us some examples?
×
×
  • Create New...