Board index
Programs with AI or Rules Enforcement
Magic: The Gathering - Duels of the Planeswalkers
Programming Talk



Oracle of Nectars
Moderator: CCGHQ Admins
3 posts
• Page 1 of 1
Oracle of Nectars
by --Dream-- » 10 Aug 2012, 09:08
Probably some silly mistake, but I can't get this one to work. Whenever I try to use the activated ability, the game asks me to choose X and taps the creature, but I dont get any life gain :/
- Code: Select all
<ACTIVATED_ABILITY forced_skip="1" filter_zone="ZONE_IN_PLAY">
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[{X}, {T}: You gain X life.]]></LOCALISED_TEXT>
<COST type="Mana" cost="{X}" />
<COST type="TapSelf" />
<RESOLUTION_TIME_ACTION>
local lifeGain = Object():GetManaX()
if lifeGain > 0 then
EffectController():GainLife( lifeGain )
end
</RESOLUTION_TIME_ACTION>
</ACTIVATED_ABILITY>
Re: Oracle of Nectars
by thefiremind » 10 Aug 2012, 09:27
Object():GetManaX() is DotP2012 syntax, while for DotP2013 you have to write:
- Code: Select all
local lifeGain = GetEffectX()
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-
thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 722 times
3 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 10 guests