Search found 119 matches
- Sat Jul 29, 2017 3:27 am
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
local TargetEntity = EntityList:GetEntity( Entity:GetTargetId() ); if TargetEntity ~= nil then local Skill = SkillList:GetSkill( Entity:GetSkillID()); if Skill ~= nil and string.find( Skill:GetName(), "_SKILL NAME HERE_" ) ~= nil then if ShoutTimer == nil or ShoutTimer < Time() then PlayerInput:Con...
- Fri Jul 28, 2017 4:32 pm
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
thats just a sample. the skill name here is the part that u change according to skill. like in IS - powerful ide, in IO - Salvo, etc etc...
in any case, theres nothing broken with that part. the only problem now is I dont know how to make a timer thats all...
- Fri Jul 28, 2017 3:17 am
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
local TargetEntity = EntityList:GetEntity( Entity:GetTargetId() ); if TargetEntity ~= nil then local Skill = SkillList:GetSkill( Entity:GetSkillID()); if Skill ~= nil and string.find( Skill:GetName(), "_SKILL NAME HERE_" ) ~= nil then PlayerInput:Console("" .. TargetEntity:GetName() .. " is gonna b...
- Fri Jul 28, 2017 2:06 am
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
scratch that! thanks Nucular and Agonic! I got everything working perfectly now. I just need to remember if I spam teh words on normal chat ill get temporary block cuz flooding chat, but group chat is totally fine ^^ now the 2nd part I need to do is to add the timer, because, oh boy... it really doe...
- Fri Jul 28, 2017 1:34 am
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
I know what you wanna do actually i hate cheating in pvp but still i tell you where you find the needed code. This code could also allow to automate perfect rippling of aoe cc skills like Fear Shrek or Sleep Storm. It could also allow to counter instant vision sleep from Sorcerer as a Bard for exam...
- Thu Jul 27, 2017 12:29 pm
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
I know what you wanna do actually i hate cheating in pvp but still i tell you where you find the needed code. This code could also allow to automate perfect rippling of aoe cc skills like Fear Shrek or Sleep Storm. It could also allow to counter instant vision sleep from Sorcerer as a Bard for exam...
- Thu Jul 27, 2017 12:26 pm
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
I know what you wanna do actually i hate cheating in pvp but still i tell you where you find the needed code. This code could also allow to automate perfect rippling of aoe cc skills like Fear Shrek or Sleep Storm. It could also allow to counter instant vision sleep from Sorcerer as a Bard for exam...
- Thu Jul 27, 2017 5:39 am
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
what if I wanna do something like this?
"if entity is casting [insert skill here], say in console "target of skill and say something here"
can we make a code for something like this?
"if entity is casting [insert skill here], say in console "target of skill and say something here"
can we make a code for something like this?
- Thu Jul 27, 2017 5:24 am
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Re: Trying to create a specific behavior. Can someone help?
basically. this is target' target. can add skill warning timer = 0 wait = 1000 function OnRun() local Entity = EntityList:GetEntity( Player:GetTargetID()); if Entity ~= nil then local entity = EntityList:GetEntity( Entity:GetTargetID()); if Time() > timer then if entity ~= nil then Write(entity:Get...
- Wed Jul 26, 2017 3:47 am
- Forum: General Discussion
- Topic: Trying to create a specific behavior. Can someone help?
- Replies: 15
- Views: 115
Trying to create a specific behavior. Can someone help?
So Im trying to create this specific behavior in my grinder framework, something that makes my toon say something. For example, that macro you make when an entity is casting a skill, and you shout out the name of the person being targeted, like in Infinity Shard when fighting Hyperion. I tried looki...