Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-THC-cards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HiiragiGuardians
ygopro-THC-cards
Commits
5d996bb0
Commit
5d996bb0
authored
Jan 30, 2026
by
GuGu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update c86379047.lua
parent
041734a5
Pipeline
#42760
passed with stage
in 1 minute and 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
11 deletions
+6
-11
script/c86379047.lua
script/c86379047.lua
+6
-11
No files found.
script/c86379047.lua
View file @
5d996bb0
...
...
@@ -154,22 +154,17 @@ function c86379047.mop(e,tp,eg,ep,ev,re,r,rp)
elseif
(
seq
>
0
and
seq
<
4
)
and
((
seq
>
0
and
Duel
.
CheckLocation
(
cp
,
LOCATION_MZONE
,
seq
-
1
))
or
(
seq
<
4
and
Duel
.
CheckLocation
(
cp
,
LOCATION_MZONE
,
seq
+
1
)))
then
local
flag
=
0
if
seq
>
0
and
Duel
.
CheckLocation
(
cp
,
LOCATION_MZONE
,
seq
-
1
)
then
flag
=
bit
.
replace
(
flag
,
0x1
,
seq
-
1
)
end
if
seq
<
4
and
Duel
.
CheckLocation
(
cp
,
LOCATION_MZONE
,
seq
+
1
)
then
flag
=
bit
.
replace
(
flag
,
0x1
,
seq
+
1
)
end
flag
=
bit
.
bxor
(
flag
,
0xff
)
if
seq
>
0
and
Duel
.
CheckLocation
(
cp
,
LOCATION_MZONE
,
seq
-
1
)
then
flag
=
flag
|
(
1
<<
(
seq
-
1
))
end
if
seq
<
4
and
Duel
.
CheckLocation
(
cp
,
LOCATION_MZONE
,
seq
+
1
)
then
flag
=
flag
|
(
1
<<
(
seq
+
1
))
end
Duel
.
Hint
(
HINT_SELECTMSG
,
c
:
GetSummonPlayer
(),
HINTMSG_TOZONE
)
local
s
=
0
local
nseq
=
0
if
c
:
GetSummonPlayer
()
==
cp
then
s
=
Duel
.
SelectDisableField
(
c
:
GetSummonPlayer
(),
1
,
LOCATION_MZONE
,
0
,
flag
)
s
=
Duel
.
SelectDisableField
(
c
:
GetSummonPlayer
(),
1
,
LOCATION_MZONE
,
0
,
(
flag
<<
16
)
)
else
s
=
Duel
.
SelectDisableField
(
c
:
GetSummonPlayer
(),
1
,
0
,
LOCATION_MZONE
,
flag
)
s
=
Duel
.
SelectDisableField
(
c
:
GetSummonPlayer
(),
1
,
0
,
LOCATION_MZONE
,
~
(
flag
<<
16
)
)
end
local
nseq
=
0
if
s
==
1
then
nseq
=
0
elseif
s
==
2
then
nseq
=
1
elseif
s
==
4
then
nseq
=
2
elseif
s
==
8
then
nseq
=
3
else
nseq
=
4
end
nseq
=
math.log
(
move1
,
2
)
-
16
Duel
.
MoveSequence
(
scc1
,
nseq
)
end
scc1
=
sg1
:
GetNext
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment