Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tome
Tales of MajEyal
Commits
22beccde
Commit
22beccde
authored
9 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
load old data
if tactical AI finds a talent taht does exist, do not explode
parent
a1aafeba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
game/engines/default/modules/boot/dialogs/LoadGame.lua
+4
-0
4 additions, 0 deletions
game/engines/default/modules/boot/dialogs/LoadGame.lua
game/modules/tome/ai/tactical.lua
+2
-3
2 additions, 3 deletions
game/modules/tome/ai/tactical.lua
with
6 additions
and
3 deletions
game/engines/default/modules/boot/dialogs/LoadGame.lua
+
4
−
0
View file @
22beccde
...
...
@@ -247,6 +247,10 @@ function _M:installOldGame(version_string)
dls
[
#
dls
+
1
]
=
{
url
=
"http://te4.org/dl/modules/tome/tome-1.2.5-gfx.team"
,
name
=
"tome-1.2.5-gfx.team"
}
dls
[
#
dls
+
1
]
=
{
url
=
"http://te4.org/dl/modules/tome/tome-1.2.5-music.team"
,
name
=
"tome-1.2.5-music.team"
}
dls
[
#
dls
+
1
]
=
{
url
=
"http://te4.org/dl/modules/tome/tome-1.2.5.team"
,
name
=
"tome-1.2.5.team"
}
elseif
version_string
==
"tome-1.3.3"
then
dls
[
#
dls
+
1
]
=
{
url
=
"http://te4.org/dl/modules/tome/tome-1.3.3-gfx.team"
,
name
=
"tome-1.3.3-gfx.team"
}
dls
[
#
dls
+
1
]
=
{
url
=
"http://te4.org/dl/modules/tome/tome-1.3.3-music.team"
,
name
=
"tome-1.3.3-music.team"
}
dls
[
#
dls
+
1
]
=
{
url
=
"http://te4.org/dl/modules/tome/tome-1.3.3.team"
,
name
=
"tome-1.3.3.team"
}
end
if
#
dls
==
0
then
...
...
This diff is collapsed.
Click to expand it.
game/modules/tome/ai/tactical.lua
+
2
−
3
View file @
22beccde
...
...
@@ -63,11 +63,10 @@ newAI("use_tactical", function(self)
local
has_los
=
aitarget
and
self
:
hasLOS
(
ax
,
ay
)
local
self_compassion
=
(
self
.
ai_state
.
self_compassion
==
false
and
0
)
or
self
.
ai_state
.
self_compassion
or
5
local
ally_compassion
=
(
self
.
ai_state
.
ally_compassion
==
false
and
0
)
or
self
.
ai_state
.
ally_compassion
or
1
for
tid
,
lvl
in
pairs
(
self
.
talents
)
do
for
tid
,
lvl
in
pairs
(
self
.
talents
)
do
local
t
=
self
:
getTalentFromId
(
tid
)
if
t
then
local
aitarget
=
aitarget
local
ax
,
ay
=
ax
,
ay
local
target_dist
=
target_dist
local
t
=
self
:
getTalentFromId
(
tid
)
if
t
.
onAIGetTarget
then
_
,
_
,
aitarget
=
t
.
onAIGetTarget
(
self
,
t
)
...
...
@@ -195,7 +194,7 @@ newAI("use_tactical", function(self)
end
end
end
end
end
end
if
ok
then
local
want
=
{}
local
need_heal
=
0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment