Logitech Posted August 21, 2015 Report Share Posted August 21, 2015 Hola quería saber si existe una quest o alguien tiene alguna para los GMs nada más Que al dar click a algún pergamino pida ID del ítem > Nombre del pj para dar el item y cantidad ayudenme plz Link to comment Share on other sites More sharing options...
Johan™ Posted August 21, 2015 Report Share Posted August 21, 2015 técnicamente no hay esa función :V deberías que crearla en c++ :3 Link to comment Share on other sites More sharing options...
pepineitor Posted August 21, 2015 Report Share Posted August 21, 2015 Prueba esto, estoy tiempo sin usar estas cosas pero creo que está bien: quest items begin state start begin when #tuitem#.use with pc.is_gm() begin say("Item ID:") local item = input() say("Item Cantidad:") local cant = input() say_reward("Nombre:") local name = input() local part = find_pc_by_name(name) if item == "" or cant == "" or name == "" or part == 0 then return end local me = pc.select(part) pc.give_item2(item,cant) pc.select(me) end end end Link to comment Share on other sites More sharing options...
Shang Posted August 21, 2015 Report Share Posted August 21, 2015 Prueba esto, estoy tiempo sin usar estas cosas pero creo que está bien: quest items begin state start begin when #tuitem#.use with pc.is_gm() begin say("Item ID:") local item = input() say("Item Cantidad:") local cant = input() say_reward("Nombre:") local name = input() local part = find_pc_by_name(name) if item == "" or cant == "" or name == "" or part == 0 then return end local me = pc.select(part) pc.give_item2(item,cant) pc.select(me) end end end Por seguridad, te aconsejaría seleccionar tu pid de nuevo al final de hacer eso. Link to comment Share on other sites More sharing options...
Recommended Posts