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
 

 Fusion monster script fix request

View previous topic View next topic Go down 
AuthorMessage
Ephraim225




Member Title : Monsieur
Posts : 3
Join date : 2014-08-02

Fusion monster script fix request Empty
PostSubject: Fusion monster script fix request   Fusion monster script fix request Icon_minitimeSat Sep 06, 2014 10:48 am

Hey all, I'm trying to code a fusion monster card, but for some reason Polymerization isn't recognizing it, though Cyber Stein does, so I'm not sure what's wrong.

This is what I have for it:
Code:
function c38341567.initial_effect(c)
   --fusion material
   c:EnableReviveLimit()
   aux.AddFusionProcCode2(c,97049481,70646715,true,true)
end

Both of the materials are also custom cards. So if anyone knows what I might have done wrong, I'd be thankful for the help.
Back to top Go down
AoO

AoO


Member Title : Noob4ever
Posts : 241
Join date : 2014-04-25
Location : I only know that it is dark :/

Fusion monster script fix request Empty
PostSubject: Re: Fusion monster script fix request   Fusion monster script fix request Icon_minitimeSat Sep 06, 2014 12:25 pm

Your part seems right to me, but I can't say, that you are used the correct ID's for your needed cards :/
Another possibility would be, that your script for Polymerization isn't right which I don't really believe, if you can summon other funsions with it.
Last but not least your script could include a mistake. Can you please post the script and the effect of your fusion??
Back to top Go down
VB99

VB99


Member Title : Legendary Planet
Posts : 368
Join date : 2013-11-10

Fusion monster script fix request Empty
PostSubject: Re: Fusion monster script fix request   Fusion monster script fix request Icon_minitimeSat Sep 06, 2014 12:25 pm

What other effects does it have and what are the effects of the materials?
Maybe one of your cards blocks the fusion from working?
Back to top Go down
http://www.fanfiktion.de/u/VB99
Ephraim225




Member Title : Monsieur
Posts : 3
Join date : 2014-08-02

Fusion monster script fix request Empty
PostSubject: Re: Fusion monster script fix request   Fusion monster script fix request Icon_minitimeSun Sep 07, 2014 12:07 am

VB99 wrote:
What other effects does it have and what are the effects of the materials?
Maybe one of your cards blocks the fusion from working?

The fusion monster has no additional effects, and one of the materials is a normal monster. So I tried making the other material a normal monster to see if it'd work...and it did.

So something in this is blocking the fusion:
Code:
function c70646715.initial_effect(c)
   --Cannot attack in the same turn it was summoned
   local e1=Effect.CreateEffect(c)
   e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
   e1:SetCode(EVENT_SUMMON_SUCCESS)
   e1:SetOperation(c70646715.atklimit)
   c:RegisterEffect(e1)
   local e2=e1:Clone()
   e2:SetCode(EVENT_SPSUMMON_SUCCESS)
   c:RegisterEffect(e2)
   local e3=e1:Clone()
   e3:SetCode(EVENT_FLIP_SUMMON_SUCCESS)
   c:RegisterEffect(e3)
   --Since it is a toon monster it is destroyed when Toon World is destroyed
   local e4=Effect.CreateEffect(c)
   e4:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
   e4:SetRange(LOCATION_MZONE)
   e4:SetCode(EVENT_LEAVE_FIELD)
   e4:SetCondition(c70646715.sdescon)
   e4:SetOperation(c70646715.sdesop)
   c:RegisterEffect(e4)
   --Enables direct attacks if Toon World is on the field
   local e5=Effect.CreateEffect(c)
   e5:SetType(EFFECT_TYPE_SINGLE)
   e5:SetCode(EFFECT_DIRECT_ATTACK)
   e5:SetCondition(c70646715.dircon)
   c:RegisterEffect(e5)
   --Powers up a particular other cards when face up
   local e6=Effect.CreateEffect(c)
   e6:SetType(EFFECT_TYPE_FIELD)
   e6:SetRange(LOCATION_MZONE)
   e6:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
   e6:SetCode(EFFECT_UPDATE_ATTACK)
   e6:SetTarget(aux.TargetBoolFunction(Card.IsCode,97049481))
   e6:SetValue(700)
   c:RegisterEffect(e6)
   local e8=Effect.CreateEffect(c)
   e8:SetType(EFFECT_TYPE_FIELD)
   e8:SetRange(LOCATION_MZONE)
   e8:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
   e8:SetCode(EFFECT_UPDATE_ATTACK)
   e8:SetTarget(aux.TargetBoolFunction(Card.IsCode,30243636))
   e8:SetValue(700)
   c:RegisterEffect(e8)
end
function c70646715.atklimit(e,tp,eg,ep,ev,re,r,rp)
   local e1=Effect.CreateEffect(e:GetHandler())
   e1:SetType(EFFECT_TYPE_SINGLE)
   e1:SetCode(EFFECT_CANNOT_ATTACK)
   e1:SetReset(RESET_EVENT+0x1fe0000+RESET_PHASE+PHASE_END)
   e:GetHandler():RegisterEffect(e1)
end
function c70646715.sfilter(c)
   return c:IsReason(REASON_DESTROY) and c:IsCode(15259703) and c:IsPreviousLocation(LOCATION_ONFIELD)
end
function c70646715.sdescon(e,tp,eg,ep,ev,re,r,rp)
   return eg:IsExists(c70646715.sfilter,1,nil)
end
function c70646715.sdesop(e,tp,eg,ep,ev,re,r,rp)
   Duel.Destroy(e:GetHandler(),REASON_EFFECT)
end
function c70646715.dirfilter1(c)
   return c:IsFaceup() and c:IsCode(15259703)
end
function c70646715.dirfilter2(c)
   return c:IsFaceup() and c:IsType(TYPE_TOON)
end
function c70646715.dircon(e)
return Duel.IsExistingMatchingCard(c70646715.dirfilter1,e:GetHandlerPlayer(),LOCATION_ONFIELD,0,1,nil)
and not Duel.IsExistingMatchingCard(c70646715.dirfilter2,e:GetHandlerPlayer(),0,LOCATION_MZONE,1,nil)
end
Back to top Go down
AoO

AoO


Member Title : Noob4ever
Posts : 241
Join date : 2014-04-25
Location : I only know that it is dark :/

Fusion monster script fix request Empty
PostSubject: Re: Fusion monster script fix request   Fusion monster script fix request Icon_minitimeSun Sep 07, 2014 12:16 am

You have a 'local e8...' although there are only 7 effects, so should replace all 'e8's with 'e7'.
Back to top Go down
Ephraim225




Member Title : Monsieur
Posts : 3
Join date : 2014-08-02

Fusion monster script fix request Empty
PostSubject: Re: Fusion monster script fix request   Fusion monster script fix request Icon_minitimeSun Sep 07, 2014 12:38 am

AoO wrote:
You have a 'local e8...' although there are only 7 effects, so should replace all 'e8's with 'e7'.

It works perfectly now. Thank you very much!

(but why did that stop it from fusing...oh well)
Back to top Go down
AoO

AoO


Member Title : Noob4ever
Posts : 241
Join date : 2014-04-25
Location : I only know that it is dark :/

Fusion monster script fix request Empty
PostSubject: Re: Fusion monster script fix request   Fusion monster script fix request Icon_minitimeSun Sep 07, 2014 12:39 am

np^^
Back to top Go down
Sponsored content





Fusion monster script fix request Empty
PostSubject: Re: Fusion monster script fix request   Fusion monster script fix request Icon_minitime

Back to top Go down
 

Fusion monster script fix request

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

 Similar topics

-
»  Fusion monster doesn't appear in extra deck?
» Magical Hats anime script request
» Where can you learn how to script Yugioh Cards??
» Fusion Misfire
» plese script

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