ElRaulxX Posted October 7, 2012 Report Share Posted October 7, 2012 Seguiré mis aportes de quests editables con esta pequeña quest a la que llamo Baúl de Items Avanzado Como mis anteriores quests, solo que edites un poquillo la quest puedes aumentar su funcionalidad a tu gusto. ¿Pero cual es su funcionalidad? Un simple cofre que al hacer uso de el (en type 18, estamos en sección quest ) te da x cantidad de objetos. quest item_chest begin state start begin when 50308.use or 50309.use or 50310.use begin itemlist = { [50308] = { {27001,10}, {27002,10}, {27003,10} }, [50309] = { {27004,10}, {27005,10} }, [50310] = { {27100,10}, {27101,10} } } local item = item.get_vnum(); local item_number = table.getn(itemlist[item]); for i = 1, item_number do pc.give_item2(itemlist[item][i][1],itemlist[item][i][2]) end pc.remove_item(item,1) end end end Bien, ahora lo interesante: ¿como se edita? Veamos... itemlist = { [50308] = { {27001,10}, {27002,10}, {27003,10} }, [50309] = { {27004,10}, {27005,10} }, [50310] = { {27100,10}, {27101,10} } } Aquà está la clave. Os daré un ejemplo de un solo item: [50308] = { {27001,10}, {27002,10}, {27003,10} }, El número que está entre corchetes [] es la id del objeto "baúl".Las dos lÃneas de abajo son los items que dará el baúl y la cantidad de él. De esta manera podéis añadir tantos items queráis que de el baúl y la cantidad de cada uno. Y si queremos añadir nuevos items, tan solo hay que copiar la estructura con un nuevo item. Ah! Y recordar añadir los items en el when. when 50308.use or 50309.use or 50310.use begin Deben estar separados todos los items que queráis que den objetos por "or", a excepción del último. Y eso es todo. Recuerdo que la quest es 100% echa por mà y no quiero que la reposteeis! Saludines! Kohaku/Baek, KeKo and TonyStark 3 Quote Link to comment Share on other sites More sharing options...
�Alejandro&Sara�Tkm Posted October 7, 2012 Report Share Posted October 7, 2012 Lo probare +1 Quote Link to comment Share on other sites More sharing options...
Varta Posted October 7, 2012 Report Share Posted October 7, 2012 Muy buena raul, gracias Quote Link to comment Share on other sites More sharing options...
TonyStark Posted October 28, 2012 Report Share Posted October 28, 2012 gracias nen xD +1 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.