Senshuken Posted May 4, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 04/14/12 Last Seen: May 11, 2016 Share Posted May 4, 2012 add setdarray getdarray Link to comment Share on other sites More sharing options...
Brian Posted May 4, 2012 Group: Members Topic Count: 75 Topics Per Day: 0.02 Content Count: 2223 Reputation: 593 Joined: 10/26/11 Last Seen: June 2, 2018 Share Posted May 4, 2012 add setdarray getdarray I think getelementofarray can be used to do some of this. For example: set .@group, 1; // for each element in .items_1[] for (set .@i,0; .@i<10; set .@i, .@i+1) { set .@this_item, getelementofarray(getd(".items_"+.@group), .@i); // do stuff with .@this_item } Link to comment Share on other sites More sharing options...
Senshuken Posted May 5, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 04/14/12 Last Seen: May 11, 2016 Author Share Posted May 5, 2012 add setdarray getdarray I think getelementofarray can be used to do some of this. For example: set .@group, 1; // for each element in .items_1[] for (set .@i,0; .@i<10; set .@i, .@i+1) { set .@this_item, getelementofarray(getd(".items_"+.@group), .@i); // do stuff with .@this_item } Sorry, I meant it as a dynamic array setter and getter. Link to comment Share on other sites More sharing options...
saithis Posted May 5, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 40 Reputation: 20 Joined: 12/31/11 Last Seen: May 10, 2013 Share Posted May 5, 2012 This does already work with setd and getd: getd(".somearray["+.@i+"]"); setd ".somearray["+.@i+"]", 0; or did you mean something like that: setdarray ".somearray", 0, 5, 4, 3, 6; but here getdarray would make no sense, since you can only get 1 value at a time 1 Link to comment Share on other sites More sharing options...
Senshuken Posted May 5, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 04/14/12 Last Seen: May 11, 2016 Author Share Posted May 5, 2012 This does already work with setd and getd: getd(".somearray["+.@i+"]"); setd ".somearray["+.@i+"]", 0; or did you mean something like that: setdarray ".somearray", 0, 5, 4, 3, 6; but here getdarray would make no sense, since you can only get 1 value at a time You're right, getdarray would be pointless, but yes I do mean the setdarray ".somearray", 0, 1, 2, 3, 4 Link to comment Share on other sites More sharing options...
ToastOfDoom Posted November 24, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 44 Reputation: 49 Joined: 11/19/11 Last Seen: January 4, 2019 Share Posted November 24, 2012 you can already do this using a combination of getd and setarray. setarray getd(".test[0]"), 1, 2, 3, 4, 5; Also sorry for the necro... =P 1 Link to comment Share on other sites More sharing options...
Euphy Posted November 24, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted November 24, 2012 Added the array example to script_commands.txt in r16963 since it could be helpful. :> Link to comment Share on other sites More sharing options...
Recommended Posts