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
 

 Help with my first custom card

View previous topic View next topic Go down 
AuthorMessage
Leet




Member Title : Knight
Posts : 3
Join date : 2015-02-20

Help with my first custom card Empty
PostSubject: Help with my first custom card   Help with my first custom card Icon_minitimeFri Feb 20, 2015 3:20 pm

So I'm trying to code my first card ever but its not going so well :/

This is the card Help with my first custom card A8F3oRr

Everything is fine except for 2 things:

  • I can't summon it with Polymerization, although Cyber Stein works (and for some reason when I use Fusion Reserve with it I can search any card in my deck xD).
  • The immune effect and attack all monsters effect aren't working.


and this is the script
Quote :
--Exa-Quetzalcoatl the Aztec Spirit of Destruction
function c501000020.initial_effect(c)
    c:SetUniqueOnField(1,0,501000020)
    --fusion material
    c:EnableReviveLimit()
    aux.AddFusionProcCode2(c,15023985,true)(c,aux.FilterBoolFunction(Card.IsType,TYPE_NORMAL.IsRace,RACE_MACHINE),1,true)
    --immune trap
    local e1=Effect.CreateEffect(c)
    e1:SetType(EFFECT_TYPE_SINGLE)
    e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
    e1:SetRange(LOCATION_MZONE)
    e1:SetCode(EFFECT_IMMUNE_EFFECT)
    e1:SetValue(c501000020.efilter)
    c:RegisterEffect(e1)
end
function c501000020.efilter(e,te)
    return te:IsActiveType(TYPE_TRAP)
end
    --attack all
    local e2=Effect.CreateEffect(c)
    e2:SetType(EFFECT_TYPE_SINGLE)
    e2:SetCode(EFFECT_ATTACK_ALL)
    e2:SetValue(1)
    c:RegisterEffect(e2)
end
I'm sure I did many things wrong, that's why I'm asking for help bounce
Back to top Go down
Leet




Member Title : Knight
Posts : 3
Join date : 2015-02-20

Help with my first custom card Empty
PostSubject: Re: Help with my first custom card   Help with my first custom card Icon_minitimeSun Feb 22, 2015 2:32 pm

Ok I figured it out on my own
Spoiler:

Thanks guys, you were great help Very Happy
Back to top Go down
 

Help with my first custom card

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

 Similar topics

-
» Help with custom card
» Help me do a custom card
»  Custom card Sorrow
» custom card hatred
» custom card anger

Permissions in this forum:You cannot reply to topics in this forum
Mackpro :: MackPro :: Requests-