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
 

 Darkness Greed: Neither effect nor picture

View previous topic View next topic Go down 
AuthorMessage
AoO

AoO


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

Darkness Greed: Neither effect nor picture Empty
PostSubject: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 1:57 pm

I found a custom card in mackpro called Darkness Greed. 
It has the effect to pay 1000LP to draw one card, but there is no script or picture for it.

This would be the script (hope I did it right^^'):

--Darkness Greed
function c201021085.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW+CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(c201021085.target)
e1:SetCost(c201021085.cost)
e1:SetOperation(c201021085.activate)
c:RegisterEffect(e1)
end
function c201021085.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.CheckLPCost(tp,1000) end
Duel.PayLPCost(tp,1000)
end
function c201021085.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsPlayerCanDraw(tp,1) end
Duel.SetTargetPlayer(tp)
Duel.SetTargetParam(1)
Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1)
end
function c201021085.activate(e,tp,eg,ep,ev,re,r,rp)
local p,d=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER,CHAININFO_TARGET_PARAM)
if Duel.Draw(p,d,REASON_EFFECT)>0 then
Duel.BreakEffect()
end
end


And for the picture somebody has to make one ;D
Back to top Go down
outlaw1994

outlaw1994
Admin
Admin

Member Title : Red-Eyes Lord
Posts : 797
Join date : 2013-07-09
Age : 29
Location : bundaberg qld australia

Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 2:02 pm

weird that you dont have the script or picture this is the picture meant to be there and does anyone else not have the pic and script for this card as i will add them in next update
Darkness Greed: Neither effect nor picture 20102110
Back to top Go down
https://mackpro.forumotion.com
AoO

AoO


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

Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 2:13 pm

lol ok  fought that this card haven't picture or script XD

I know that this is the wrong topic for this but could you help me with a card, that I mentioned in another forum?? ^^'

It was the card that let you pay a multiple amount of 1000LP to draw 1 card for each 1000LP you paid.

I'm getting a headache because of that :/
Back to top Go down
outlaw1994

outlaw1994
Admin
Admin

Member Title : Red-Eyes Lord
Posts : 797
Join date : 2013-07-09
Age : 29
Location : bundaberg qld australia

Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 2:28 pm

easy here you go just replace ???????? with your id

Code:
function c????????.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(c????????.cost)
e1:SetTarget(c????????.target)
e1:SetOperation(c????????.activate)
c:RegisterEffect(e1)
end
function c????????.cost(e,tp,eg,ep,ev,re,r,rp,chk)
   if chk==0 then return Duel.CheckLPCost(tp,1000) end
   local lp=Duel.GetLP(tp)
   local t={}
   local f=math.floor((lp-1)/1000)
   local l=1
   while l<=f do
      t[l]=l
      l=l+1
   end
   local announce=Duel.AnnounceNumber(tp,table.unpack(t))
   Duel.PayLPCost(tp,announce*1000)
   e:SetLabel(announce)
   e:GetHandler():SetHint(CHINT_NUMBER,announce)
end
function c????????.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsPlayerCanDraw(tp,e:GetLabel()) end
Duel.SetTargetPlayer(tp)
Duel.SetTargetParam(e:GetLabel())
Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,e:GetLabel())
end
function c????????.activate(e,tp,eg,ep,ev,re,r,rp)
local p,d=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER,CHAININFO_TARGET_PARAM)
Duel.Draw(p,d,REASON_EFFECT)
end
Back to top Go down
https://mackpro.forumotion.com
AoO

AoO


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

Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 2:41 pm

Thank you very much^^
Back to top Go down
outlaw1994

outlaw1994
Admin
Admin

Member Title : Red-Eyes Lord
Posts : 797
Join date : 2013-07-09
Age : 29
Location : bundaberg qld australia

Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 3:38 pm

np
Back to top Go down
https://mackpro.forumotion.com
ultrarotom




Member Title : merdaman
Posts : 22
Join date : 2014-04-25

Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 8:46 pm

Man, you turned my Darkness Greed into a hell of OP card.

It makes Exodia more OP than it is already. Pay 7000 life, draw 7? Damn

Its one of the best tools of otk and overpowered combos that way.
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 :/

Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitimeSat May 17, 2014 9:05 pm

Actally no, I happened to find darkness greed in mackpro, after I came up with the idea of the effect.

But yeah, it makes it OP XD
Back to top Go down
Sponsored content





Darkness Greed: Neither effect nor picture Empty
PostSubject: Re: Darkness Greed: Neither effect nor picture   Darkness Greed: Neither effect nor picture Icon_minitime

Back to top Go down
 

Darkness Greed: Neither effect nor picture

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

 Similar topics

-
» Normal Monsters and Darkness Greed
» Magical Hats (Anime) Effect + Dark Sage (Anime) Effect [Help Please]
» Does anyone else think this is broken - Anger of Greed
» The Darkness Dragon's
» Help with Unaffected effect

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