#67
Discarded
set card with turn 180 dec
Reported by Anonymous on OCTGN · 17/01/2009 02:23:33
- Assigned to:
- jods
- Priority:
- Normal
- Status:
- Discarded
- Category:
- None
- Version:
- 0.3.1.5
- Issue type:
- Bug
<cardaction default=“true” menu=“SET CARD”>
<mute />
<move to="table">
<this />
<togglerot180>
<this />
</togglerot180>
<if>
<isrot180>
<this />
</isrot180>
<then>
<print text=“{me} turns {this} upside-down” />
</then>
<else>
<print text=“{me} turns {this} rightside-up” />
</else>
</if>
</move>
<print text=“{me} SET {this} 。” />
</cardaction>
when i use this it only set card but not turn 180 why?
then i try it as blew also not work
to close your move tag before you can do anything else… Try this:
Code:
<cardaction default=“true” menu=“SET CARD”>
<mute />
<move to="table">
<this />
</move>
<togglerot180>
<this />
</togglerot180>
<if>
<isrot180>
<this />
</isrot180>
<then>
<print text=“{me} turns {this} upside-down” />
</then>
<else>
<print text=“{me} turns {this} rightside-up” />
</else>
</if>
<print text=“{me} SET {this} 。” />
</cardaction>
Attachments
No attachment has been uploaded, yet.
Loading comments...