a place for all your custom card needs you can post scripts pics and request for card to be made also please donate to the funding for a new server made for custom card duels
 
HomePortalLatest imagesSearchRegisterLog in

Share
 

 Little help plz

View previous topic View next topic Go down 
AuthorMessage
cane_63106

cane_63106


Member Title : D.D. Dragon Kaiser
Posts : 454
Join date : 2013-07-23
Location : St. Louis, MO

Little help plz Empty
PostSubject: Little help plz   Little help plz Icon_minitimeSun Aug 11, 2013 9:00 am

It's effect is:
If this card is destroyed as a result of battle, banish it and special summon 1 lv4 or lower d.d. dragon from your deck. I have the special summoning part down but it's trying to squeeze in banishing it before the special summoning that's killing me.

--32083015
function c32083015.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(32083015,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLED)
e1:SetCondition(c32083015.condition)
e1:SetTarget(c32083015.target)
e1:SetOperation(c32083015.operation)
c:RegisterEffect(e1)
end
function c32083015.condition(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsStatus(STATUS_BATTLE_DESTROYED)
end
function c32083015.filter(c,e,tp)
return c:IsRace(RACE_DRAGON)and c:IsSetCard(0x7D53)and c:IsLevelBelow(4)
and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
end
function c32083015.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
and Duel.IsExistingMatchingCard(c32083015.filter,tp,LOCATION_DECK,0,1,nil,e,tp) end
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_DECK)
end
function c32083015.operation(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
local g=Duel.SelectMatchingCard(tp,c32083015.filter,tp,LOCATION_DECK,0,1,1,nil,e,tp)
if g:GetCount()>0 then
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP)
end
end
Back to top Go down
http:// https://www.youtube.com/user/cane63106/videos
jackmoonward

jackmoonward
Admin
Admin

Posts : 75
Join date : 2013-08-03
Age : 26
Location : Classified

Little help plz Empty
PostSubject: Re: Little help plz   Little help plz Icon_minitimeSun Aug 11, 2013 11:15 am

Done.

--32083015
function c32083015.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(32083015,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLED)
e1:SetCondition(c32083015.condition)
e1:SetTarget(c32083015.target)
e1:SetOperation(c32083015.operation)
c:RegisterEffect(e1)
end
function c32083015.condition(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsStatus(STATUS_BATTLE_DESTROYED)
end
function c32083015.filter(c,e,tp)
return c:IsRace(RACE_DRAGON) and c:IsSetCard(0x7D53) and c:IsLevelBelow(4)
and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
end
function c32083015.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
and Duel.IsExistingMatchingCard(c32083015.filter,tp,LOCATION_DECK,0,1,nil,e,tp) end
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_DECK)
end
function c32083015.operation(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end
Duel.Remove(e:GetHandler(),POS_FACEUP,REASON_EFFECT)
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
local g=Duel.SelectMatchingCard(tp,c32083015.filter,tp,LOCATION_DECK,0,1,1,nil,e,tp)
if g:GetCount()>0 then
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP)
end
end
Back to top Go down
http://www.tehmadhouse.tk
cane_63106

cane_63106


Member Title : D.D. Dragon Kaiser
Posts : 454
Join date : 2013-07-23
Location : St. Louis, MO

Little help plz Empty
PostSubject: Re: Little help plz   Little help plz Icon_minitimeSun Aug 11, 2013 4:37 pm

I wake up to this?! You're freakin magical man! lol Thanks a lot, seriously.
Back to top Go down
http:// https://www.youtube.com/user/cane63106/videos
Sponsored content





Little help plz Empty
PostSubject: Re: Little help plz   Little help plz Icon_minitime

Back to top Go down
 

Little help plz

View previous topic View next topic Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Mackpro :: MackPro :: Custom Card Ruling and Bugs-