ID:1104225
 
(See the best response by Lugia319.)
The Game I'm Making if for a Card Game, how can i program the cards into the game im making to were they can be used and searched? The Game is for Cardfight!! Vanguard.

Well, you'll have to give a clean-cut definition for "using" and "searching". We won't be designing the game for you.
I imagine you'll want a list of cards (namely, a "deck") and you can loop through that to search for them. Example?

mob
var
list/Deck = list()

obj
Card
KidNeos
var
ID = "KD" // Parameter to identify cards

mob
proc
FindCardID(T) // T is a string
for(var/obj/Card/C in src.Deck) // Loop through deck
if(C.ID == T) // If the card ID matches argument
return C // return it


Using a loop and acting on conditions of what is found, you can do many things.
I'm just asking, kinda hoping if anyone knew of a pre-made code files or whatever that helps teach someone on how to. Like a guide or something.
Best response
In response to Lugia319
this can work thanks
How can i make the program pop-up my Edit Deck Window I made so i can see if I'm doing the add card thing correctly?
I can make the main menu buttons that are on the side already, but I'm not sure how to make it bring any windows i made up. I can't find that in the link you gave me unless i missed that somewhere.