frozen94 Posted December 7, 2013 Report Share Posted December 7, 2013 Buenos dias tardes noches , les podria pedir el favor noc pense q iva a ser algo sencillo noc q paso se me complico solo logro q me pida un item estos son ejemplos q useeste el q los pideelseif pc.count_item(27994) < 1 then este es el q los hace darlocal items = pc.count_item(880) if items >= 1 thenbn lo q busco es q me pida items distintosejemplo hay pide 27994 y q pida noc 2754 2154 2145 etc a la vez xD Link to comment Share on other sites More sharing options...
pepineitor Posted December 7, 2013 Report Share Posted December 7, 2013 local items = { item1, cantidad1, item2, cantidad2 }for a=1, table.getn(items) do if pc.count_item(a) < a+1 then say("No tienes los items necesarios") return end a=a+2endfor b=1, table.getn(items) do pc.remove_item(b,b+1) b=b+2end Link to comment Share on other sites More sharing options...
frozen94 Posted December 7, 2013 Author Report Share Posted December 7, 2013 Gracias , ahora me funciona la parte donde me los pide pero ahora noc q sucede los tengo y pff me dce q no los tengo jajajaja, estoy casi seguro q el error surge aqu local items = {8080,1,8081,1} if items >= 1 then Link to comment Share on other sites More sharing options...
pepineitor Posted December 8, 2013 Report Share Posted December 8, 2013 Perdona ha sido un fallo tonto por la prisas. local items = { item1, cantidad1, item2, cantidad2 }for a=1, table.getn(items) do if pc.count_item(items[a]) < items[a]+1 then say("No tienes los items necesarios") return end a=a+2endfor b=1, table.getn(items) do pc.remove_item(items[b],items[b]+1) b=b+2end Link to comment Share on other sites More sharing options...
Recommended Posts