so i made a leaderboard, this evensheet i got from a tutorial in the forum. but this evensheet uses a third party plugin called CSV made by Henrik.
how do i keep the code in running without using this plugin? while the csv plugin from Construct 3 doesn't have that feature.
i tried asking gpt chat to use js code but it still doesn't work.
Develop games in your browser. Powerful, performant & highly capable.
With the official plugin use "CSV parse" action to load the table into an array. Then access the values in the array using "for each" loop or array.at(x,y) expressions.
You can create a couple of helper functions, for example:
thank you dop2000, its work!!