Jump to content

12p

Members
  • Posts

    2,608
  • Joined

  • Last visited

Everything posted by 12p

  1. A.I'm not an asshole. That hacks my PC Q. Why are you obsessed with hacking, man?
  2. /me killed both users above (read their posts, I did that again for every of them)
  3. 12p

    Ayuda

    1. NO USES ESE COLOR DE TEXTO! HACE QUE A UNO LE DUELAN LOS OJOS! 2. https://community.multitheftauto.com 3. Si tu servidor no llega a esa cantidad, puedes modificarlo en mtaserver.conf (https://wiki.multitheftauto.com/index.ph ... _Principal)
  4. Browse Servers dejalo como "Buscar servidores"... Y Crear Server debe ser "Crear Servidor"... Buen tema, pero no me gusto mucho el hecho de que diga "Rockstar servers"
  5. You can do that easily! Client: text = "" function drawMyText ( ) dxDrawText ( arguments..., text, ...arguments ) --You add the position, size, font, scale, etc arguments! end function createDXText ( t, timeToDestroy ) text = t addEventHandler ( "onClientRender", getRootElement ( ), drawMyText ) setTimer ( removeEventHandler, timeToDestroy, 1, "onClientRender", getRootElement ( ), drawMyText ) end addEvent ( "onDXText", true ) addEventHandler ( "onDXText", getRootElement ( ), function ( thetext ) create3DText ( thetext, someTime ) end ) Server addEventHandler ( "onPlayerQuit", getRootElement ( ), function ( ) triggerClientEvent ( getRootElement ( ), "onDXText", source, getPlayerName ( source ).." has left the server!" ) end ) And it should work! But there will be some issues if more than 1 player leaves I suggest you to make it easier and just use outputChatBox. May be too mainstream and simple but is easier and probably will take you out more than 1 headache.
  6. I did. The first time I clicked on your link, Aibo, it was down and said some error code (505 I guess). Now I see it
  7. What's the relevancy of "telling 'qaijsp stole a CSS code that says that MTA is better than SAMP'" in the thread "I have a suggestion for the forums of MTA". I won't understand the people.
  8. I know. I have already done it in the past. Remember the old Minecraft days. EDIT: v0.2.7 released
  9. Again, I DON'T KNOW WHAT THE HELL I CHANGED BUT NOW IS WORKING. OMG THERE MUST BE SOMETHING WRONG WITH ME Thank you guys for trying to help me.
  10. 1. that page is down somewhat. 2. Dude, can you at least say something relevant to the topic itself?
  11. Stop spamming dude, this is serious. Not a thread where you talk about stupid TV series and paste pages just to say "SAMP is better than MTA".
  12. If the vehicle is not created, I speak asgtyhythyhdf's language. So, yep. I see the vehicle created and some of my friends who test the script, also see it. EDIT: @Aibo, here is other part of my code: function resetConfig ( p ) dettachElementFromPlayer ( p ) GLOBAL_ELEMENTS_TABLE[p] = { } --More things but doesn't matter end addEventHandler ( "onPlayerJoin", getRootElement ( ), function ( ) resetConfig ( source ) end ) for i, p in ipairs ( getElementsByType ( "player" ) ) do resetConfig ( p ) end
  13. Okay. Here is the code I use. GLOBAL_ELEMENTS_TABLE = { } function getPlayerElementsTable ( p ) return GLOBAL_ELEMENTS_TABLE[p] end addEventHandler ( "onPlayerCreateElement", getRootElement ( ), function ( ele, id, x, y, z, r, keep, weapon ) local thetable = getPlayerElementsTable ( source ) outputChatBox ( type ( thetable ) ) if ele == "vehicle" then local v = createVehicle ( id, x, y, z ) setVehicleRotation ( v, 0, 0, r ) if table.insert ( thetable, v ) then outputChatBox ( "Element Vehicle was added to "..getPlayerName ( source ) .. "'s table" ) end elseif ele == "object" then local obj = createObject ( id, x, y, z ) setElementRotation ( obj, 0, 0, r ) table.insert ( thetable, obj ) elseif ele == "ped" then local ped = createPed ( id, x, y, z ) setElementRotation ( ped, 0, 0, r ) if getWeaponNameFromID ( weapon ) then giveWeapon ( ped, weapon, 999999, true ) end table.insert ( thetable, ped ) end end ) Everything works fine; the element is created, the table is created, but someway it doesn't insert the element into the table.
  14. Well, I wanna make a Undo system. I'll explain how it works: Easy, isn't it? Well, the problem is that I cannot insert elements into tables. I thought it was possible. I don't have any other idea to do it. How to?
  15. 1. It looks like SAMP, very bad 2. What the hell does that video "mean"? Just all players using an animation, the police comes and a n00b-fight (no shotguns, M4 or at least pistols) begins? 3. Do something better than that, it didn't impress me even a bit.
  16. BTW, I didn't like this resource at all. It is fine but WHAT THE F********** is that super-epic-fast-moving DX text on the screen? Would be going to make me lose if I see it in a server.
  17. Did you know that I mean CONTAINER, FORUM spoilers? Those things that you click and they show you it's content like in a box? And click them again to take the content out?
  18. OMG what a lazy dude. Do it yourself. Nobody will care about a newbie's request like that.
×
×
  • Create New...