-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Event macro slot system #2781
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Henrybk
wants to merge
17
commits into
master
Choose a base branch
from
eventMacro_slot_system
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Event macro slot system #2781
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a64bb26
got the system working, still needs lots of changes
Henrybk eeb4a0b
changed macro
Henrybk 8316490
code cleaning
Henrybk 52d3cd8
added slot system to event callbacks
Henrybk 6b58251
made possible to run overrideAI 0 macros
Henrybk 9b9cbf3
added missing AI arg
Henrybk 4dbe70d
Changed readme and removed a few TODO comments
Henrybk 2c5484f
Merge branch 'master' into eventMacro_slot_system
Henrybk 6554939
Fixed most of the command and a few other bugs
Henrybk e2cd404
typo fix in command
Henrybk c9ea08a
fixed tests
Henrybk 1c88d39
fixed error in tests
Henrybk 660e219
Fix wrong hash ref in Core.pm
Henrybk 959a754
Merge branch 'master' into eventMacro_slot_system
Henrybk 79d071a
prohibited slot 0, cleaned command
Henrybk fe730a3
tabs
Henrybk 7204be5
Merge branch 'master' into eventMacro_slot_system
Henrybk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
|
|
||
| automacro test_slot1 { | ||
| exclusive 1 | ||
| InMap prontera | ||
| disabled 0 | ||
| overrideAI 1 | ||
| slot 1 | ||
| call { | ||
| log This is working in slot 1 start | ||
| pause 1 | ||
| do c hey | ||
| pause 1.5 | ||
| log This is working in slot 1 end | ||
| } | ||
| } | ||
|
|
||
| automacro test_slot2 { | ||
| exclusive 1 | ||
| InMap prontera | ||
| disabled 0 | ||
| overrideAI 1 | ||
| slot 2 | ||
| call { | ||
| log This is working in slot 2 start | ||
| pause 1.5 | ||
| do c there | ||
| pause 1 | ||
| log This is working in slot 2 end | ||
| } | ||
| } | ||
|
|
||
| automacro test_slot3 { | ||
| exclusive 1 | ||
| InMap prontera | ||
| disabled 0 | ||
| overrideAI 1 | ||
| slot 3 | ||
| call { | ||
| log This is working in slot 3 start | ||
| pause 2 | ||
| do c man | ||
| pause 0.5 | ||
| log This is working in slot 3 end | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.