-
Member
[Help] Speed limit
hello rz? anyone can help me how to add speed limit ? im using MUEMU files season6
-
-
Member
re: [Help] Speed limit
Hello! Ammm, for delay as many skills you can use like this.
Files\IGCData\Skills\IGC_SkillList.xml
Delay="0"
But about other specific speed limits i dont think if s6 muemu files supports till it working.. but you could try your self in here....
IGCData\Scripts\Character\CalcCharacter.lua
function CalcAttackSpeed(Class, Dexterity) local AttackSpeed = 0 local MagicSpeed = 0 if(Class == CLASS_WIZARD) then AttackSpeed = Dexterity / 20 MagicSpeed = Dexterity / 10 elseif(Class == CLASS_KNIGHT) then AttackSpeed = Dexterity / 15 MagicSpeed = Dexterity / 20 elseif(Class == CLASS_ELF) then AttackSpeed = Dexterity / 50 MagicSpeed = Dexterity / 50 elseif(Class == CLASS_GLADIATOR) then AttackSpeed = Dexterity / 15 MagicSpeed = Dexterity / 20 elseif(Class == CLASS_DARKLORD) then AttackSpeed = Dexterity / 10 MagicSpeed = Dexterity / 10 elseif(Class == CLASS_SUMMONER) then AttackSpeed = Dexterity / 20 MagicSpeed = Dexterity / 20 elseif(Class == CLASS_RAGEFIGHTER) then AttackSpeed = Dexterity / 9 MagicSpeed = Dexterity / 9 end return AttackSpeed, MagicSpeedend
Good luck, have fun! :)
-
Member
re: [Help] Speed limit
hello @crew i just want to speed limit like move speed to prevent cheater. or can you give me any idea??