Quote:
Originally Posted by Uncorrupted
affect.add(apply.ATTACK_SPEED, 10, 3600)
That would give you 10% Attack Speed for 1 hour. You can see the affect types in questlib.lua
|
Thanks , but what is wrong on this quest ?
quest buffy begin
state start begin
when 20381.chat."Požehnání" with pc.getqf("pozehnani")== 0 begin
setskin(NOWINDOW)
chat("Nyní máš 20000 silný proti všem příšerám")
pc.setqf("pozehnani", 600)
affect.add(apply.ATTBONUS_MONSTER, 20000, 600)
end
end
when login with pc.getqf("pozehnani")== 0 begin
chat("Tvé požehnání právě skončilo.")
affect.remove(apply.ATTBONUS_MONSTER, 20000, 600)
end
when 20381.chat."Požehnání" with pc.getqf("pozehnani")== 1 begin
chat("Již si obdržel požehnání!")
chat("Přijď za 10 minut.")
end
end
end
end