-2

I am looking for a way to make a array list in cheat engine does anyone know how to make one? I have attempted to make scripts to no success.

  • 2
    Please provide more details and show us some code. See [How do I ask a good question?](https://stackoverflow.com/help/how-to-ask). – tomasantunes Jul 20 '21 at 10:21

1 Answers1

1

Use Lua's table type to create arrays/lists

local myPetList = {"dog", "cat", "bird"}
Piglet
  • 27,501
  • 3
  • 20
  • 43