I mean that I get all cards to a table and use math.random to get a random card name in roblox
Why does this only print âapiâ
local board = "Fortress"
local list = "Generals"
local api = require(game.ServerScriptService:WaitForChild("APIs").TrelloAPI)
print("api")
local boardID = api:GetBoardID(board)
print("board")
local listID = api:GetListID(list,boardID)
print("variables")
local newCard = api:AddCard("Test","Test123",listID)
print("card")
Try to print out only the api (so print(api)). Maybe it is not loaded. In addition you may move the WaitForChild to the TrelloAPI so (game.ServerScriptService.APIs:WaitForChild(âTrelloAPIâ))
Hello, I donât know if anyone else is having this issue, however, I canât access the module due to âError 1020â, is there any way to view the document?
Getting a cloudflare error here.
Is there any way to count the number of cards in a list?
Pretty sure this is broken. Doesnât work for me anymore.
yes if it works you can do:
local cards = TrelloAPI:GetCardsInList(list_here)
for number,v in ipairs(cards) do
print(number)
end
Hello Guys, My message is not to compete or to say that what we have done is better, I just want everyone to have the ability to use trello in theirs game easily, this Api goes back so many years, and it doesnât work very well anymore.
A few months ago we made a new API with A Lot of new functions:
If you have any questions / suggestions you can ask them directly in my post!
I have an error due to the scripts gets out of serverscriptservice or gets deleted
and the documentation website might be wrong link or the website is changed
but could I get a help for the error
This resource is several years old and its creator is no-longer extant on the platform.
You should refer to another resource on Roblox <-> Trello, Atlassianâs API documentation, or #help-and-feedback:scripting-support.
NB: Trello is still not advisable for use as a database and is a dubious product anyway, but that is not going to stop people from using it as such.