[Pawn] 3d iterator array - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] 3d iterator array (/showthread.php?tid=2032) |
3d iterator array - K.a.r.o.l - 2021-05-18 Hi i?have the latest version of ysi 5.05.0301 but i have a problem with 3d iterator array. Code: new Errors: error 017: undefined symbol "Iter_InternalSize" error 028: invalid subscript (not an array or too many subscripts): "Iter_Init@Iter3" warning 215: expression has no effect error 001: expected token: ";", but found "]" error 029: invalid expression, assumed zero fatal error 107: too many error messages on one line i also tried this Code: #define SIZE 5 and this Code: for (new i = 0; i != Iter_InternalSize(Iter3); ) but its doesnt work Pls help RE: 3d iterator array - Y_Less - 2021-05-18 1. Don't use functions with "Internal" in their name - they are internal to the library. 2. I've never tested with 3d arrays, pawn doesn't really do 3d arrays and I'd be amazed if it worked at all. Honestly, you really shouldn't even need a 3d array ever. |