Akroma Posted November 27, 2012 Report Share Posted November 27, 2012 Bueno feas, despues de ver que mi mob_drop_item.txt no va bien, i de pegarme la locura de ver los objetos en el puto chino mandarin, pos me dije, i xk no hacer 1 quest?, i la ize, quedo esto al final: Debes iniciar sesión para ver el contenido del enlace en esta publicación. aqui os la dejo x si la quereis ver sin ir al enlaze. quest drops_monsters begin state start begin local drops = { --drops_monstruos_objetos-- { { 87231 }, --1-- { 87232 }, --2-- { 87233 }, --3-- { 87234 }, --4-- { 87235 }, --5-- { 87236 }, --6-- { 87237 }, --7-- { 87238 }, --8-- { 87239 }, --9-- { 87240 }, --10-- { 87241 }, --11-- { 87242 }, --12-- { 87243 }, --13-- { 87244 }, --14-- { 87245 }, --15-- { 87246 }, --16-- { 87247 }, --17-- { 87248 }, --18-- { 87249 }, --19-- { 87250 }, --20-- { 87251 }, --21-- { 87252 }, --22-- { 87253 }, --23-- { 87254 }, --24-- { 87255 }, --25-- { 87256 }, --26-- { 87257 }, --27-- { 87258 }, --28-- { 87259 }, --29-- { 87260 }, --30-- }, } local dinero = { --drops_monstruos_dinero-- { { 3000 }, --1-- { 5000 }, --2-- { 8000 }, --3-- { 10000 }, --4-- { 20000 }, --5-- { 30000 }, --6-- { 40000 }, --7-- { 50000 }, --8-- { 100000 }, --9-- }, } --posibilidad de que salga el objeto-- local posibilidad = math.random (1, 50) --monstruos que dropearan el objeto o dinero-- when 1093.kill and posibilidad == 1 begin game.drop_item(drops[1], 2) pc.change_money(dinero[1]) end when 1094.kill and posibilidad == 3 begin game.drop_item(drops[4], 5) pc.change_money(dinero[4]) end end end Creada por mi, el editarla es sencillo se os va explicando en la quest. Daryl, siguaschristofer2332, Life and 1 other 4 Quote Link to comment Share on other sites More sharing options...
KeKo Posted November 27, 2012 Report Share Posted November 27, 2012 Hombre akro no está mal pero asÃ: game.drop_item(drops[1], 2) pc.change_money(dinero[1]) Por mucho aleatorio que hayas puesto antes siempre te dara el mismo item. Además, la sintaxis del array esta mal hecha: { 87260 }, El ultimo elemento del array no lleva NUNCA coma La sintaxis correcta serÃa asi: local dinero = { --drops_monstruos_dinero-- { { 3000 }, --1-- { 5000 }, --2-- { 8000 }, --3-- { 10000 }, --4-- { 20000 }, --5-- { 30000 }, --6-- { 40000 }, --7-- { 50000 }, --8-- { 100000 } --9-- } Le habias puesto un }, que sobraba ademas de que el ultimo elemento tuviera coma Predator77 1 Quote Link to comment Share on other sites More sharing options...
iancu dumitrache Posted December 24, 2020 Report Share Posted December 24, 2020 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.