It would have a timer of set seconds and would refresh the shout cooldown.
I don't know the CK's scripting language, so i'll just put some example code.
scriptname shoutcooldown
float time
event gamemode
time -= 1
if key is pressed(z) then shout cooldown is refreshed and time = 20
end
2. I want to tweak the global difficulty of the game. Are there variables which i can edit to increase the difficulty of everything at once, like a global health variable?
3. How can i make word of power tomes?
4. I also want to make a power attack command. This would also have a cooldown.
scriptname powerattack
float time
event gamemode
time -= 1
if key is pressed(x) then do a power attack and time = 20
end
I tried reading constructionkit.com but i don't see commands for editing keys and managing shout cooldown.
