Search the Community
Showing results for tags 'opinión'.
-
GTA and Roleplay isn't something new. I think even in singleplayer, after modding was a thing, people who like GTA use it's assets (the game) for world building and RP. I played MTA's text RP for a tiny bit (most of my time in MTA was on CIT actually). I have my take on how to build an RP that's also a game and not D&D levels of insanity (i don't like the wall of texts formula). MTA, SAMP and mods always have touched Roleplay, it was never that big. But suddenly GTA V's MP mods broke internet with streamers having 15k+ viewers playing on Roleplay servers. The RP they've there is much more like a Gmod darkRP with way less modding capabilities. It close resembles RP we see in MTA (mostly bad RP) but why now ? Are they doing something different ? Is it only because GTA SA is dated ? What are your opinions on this.
-
Buenas. Estoy haciendo un sistema de inventario para un DayZ completamente hecho por mi (optimizado, sin ninguna guia de codigo de otras versiones). Por ello, quiero aplicar un sistema de inventario nuevo, dejando de lado los elementData's. Entonces, mi duda es la siguiente: ¿Que seria mejor para guardar los items del usuario? Una tabla SQLite? local db = dbConnect("sqlite", "inventory.db") dbExec(db, "CREATE TABLE IF NOT EXISTS Inventory(player, itemName, itemUniCode)") O una tabla normal? items = {} --- function giveItem(player, itemName) local itemUniCode = math.random(0, 99999999) table.insert(items, {player, itemName, itemUniCode}) end Cabe destacar que en parte quiero hacer un sistema de Inventarios parecido al de Paradise RolePlay. Es decir, que no aparezca por ejemplo: Agua (3), si no 3 iconos de agua en el dxPanel de Inventario que estoy desarrollando ((el cual esta finalizado, solo resta esto)). Un saludo y gracias de antemano!