Files
m2dev-server/share/locale/english/quest/upgrade_mount.quest
d1str4ught add0035964 server init
2025-08-22 19:04:53 +02:00

17 lines
304 B
Plaintext

quest upgrade_mount begin
state start begin
when 71115.use with pc.count_item(50156) > 0 begin
say("hallo, cooles teil")
s = select("ja", "nein")
if s == 2 then
return
else
pc.remove_item(50156,1)
pc.remove_item(71115,1)
pc.give_item2(71124, 1)
end
end
end
end