Jump to content

12p

Members
  • Posts

    2,608
  • Joined

  • Last visited

Everything posted by 12p

  1. 1. Depende del CLEO que quieras emular. 2. No es algo para hacer de un día a otro, toma eso en cuenta. 3. Ya que a mi parecer no tienes experiencia en scripting, esto no es lo que deberías intentar hacer primero. Puede que logres hacer el mod en MTA, pero de que no te laggee el juego, que no tenga bugs, etc, etc...
  2. 12p

    HunterAlert Message

    Stolen from FFS.
  3. (Fuente: viewtopic.php?f=145&t=45043&p=450816#p450803) Es más, el propio nombre te lo está diciendo: RPG = RolePlay Gaming Y dices que "RolePlay Gaming" no es lo mismo que "RolePlay"... No tiene sentido, y tú deberías notar eso. Es más, tu server no es RPG. RPG es un tipo de juego del estilo Final Fantasy, Kingdom Hearts o Golden Sun, en el que se tienen "niveles de pelea", y luchas contra monstruos u otro tipo de enemigos, con el fin de subir este nivel de pelea, junto a otros subniveles (de magia y combate cuerpo a cuerpo, por ejemplo).
  4. 12p

    una ayuda compleja

    Sí, es posible.
  5. Ya que se puede emular con scripts... No concuerdo contigo, Otto.
  6. This is a Showroom subforum. So every map is exposed here to be criticized/praised.
  7. So you have to make 10,000 blocks to create a good, "realistic" destructible terrain system.
  8. Well... This seems like a MTA bug or software-related problem. This code doesn't work for me when I test it, but it doesn't throw errors nor I see any fail in the coding
  9. 12p

    WALALALA

    One of the users above. He just changed its name and avatar so you don't recognize who's him now.
  10. ...and Tirnano and Anubias. I did not like this map. Everything on it, even the decoration is overused lol
  11. The camera and the streamer are the easiest parts to do, qais.
  12. Mate, let me tell you. Worms itself is an extremely complex game. I mean, just look at the AI and try to figure out how to make them not fail their shots (like Level 5 AI). Or try to figure out how to make destructible terrain. Even in Game Maker (the program is oriented to 2D games so it should be easier) it's still hard to make this properly. My point is, I doubt someone's going to do that, ever. I lol'd at the skins, btw. They look so... They just don't fit the game
  13. 12p

    Problem

    (which means Freeroam gamemode)
  14. It was pretty weird you used the tractor in that map, lol. But I didn't like it
  15. 12p

    Uso de ....

    local list = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true ) --Crear una lista GUI local column = guiGridListAddColumn( playerList, "Columna", 0.85 ) --Crear una columna en esa lista table = { "asd", "lolazo", "nombre" } --La tabla ya esta lista for i, item in ipairs( table ) do --Para cada valor dentro de la tabla, local row = guiGridListAddRow ( list ) --crear una fila en la lista, guiGridListSetItemText ( list, row, column, getPlayerName ( item ), false, false ) --y darle a esa fila, en la columna ya mencionada, el valor en concreto dentro de la tabla end
  16. Ese mod ha sido scripteado, no hay manera de poner CLEO directamente en un servidor.
  17. Indeed. But setRadioChannel( 0 ) isn't working there.
  18. I'll try to make a quick summary about how to use this with accounts data. --SAVING someTable = { 5, 13, 96 } --Any table with values within someAccount = getAccount( ... ) --Just some random account element accountData = toJSON( someTable ) --The table is now ready to be account data! BUT you cannot modify it; it's encrypted setAccountData( someAccount, "someDataName", accountData ) --The account now has your encrypted table stored! --LOADING someAccount = getAccount( ... ) --Just some random account element jsonTable = getAccountData( someAccount, "someDataName" ) --Let's get your encrypted table! someTable = fromJSON( jsonTable ) --Now your table is back!
  19. Heck no. That code doesn't work the way I want this to work. However, what's the problem with my code? Just tell me what I'm doing wrong, please.
  20. The font isn't proper. It should be a bit smaller and using a border. Maybe Impact would be cool. The background should be changed, you are using the default PhotoShop mosaics. What if you make something simplier? You could edit the images of the MTA logo to make them not-rounded rectangles.
  21. BUMP. I need help with this one, I don't get the problem. Please.
  22. 12p

    Uso de ....

    Ya que esa función te devuelve una tabla con valores, puedes rellenar filas de una lista GUI con un estatuto FOR.
  23. addEventHandler ( "onPlayerLogin", getRootElement(), function () local serial = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" local theSerial = getPlayerSerial( source ) local acc = getPlayerAccount( source ) local account = getAccountName( acc ) if account == "sora" then if theSerial == serial then outputChatBox( "* Welcome Back " .. getPlayerName ( source ) .. " .", getRootElement(), 255, 255, 255, true ) else kickPlayer( source, source, "Don't use this account anymore!" ) outputChatBox( "* " .. getPlayerName ( source ) .. " kicked for using stolen account .", getRootElement(), 255, 255, 255, true ) end end end )
×
×
  • Create New...