I miss the ability to manage files from within AGS, such as creating & deleting folders and renaming, copying & deleting files. Would it be hard to write a module or to implement this directly into AGS?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menufunction Message (String text) {
dostuff;
}
Message (String.Format ("bla bla bla %d",stat));
struct InteractZone {
String zoneTitle;
int zoneImage;
String zoneType;
};
InteractZone zoneHotspot[10];
InteractZone zoneObject[10];
on mouse click -> is cursor over hotspot? -> interact (hotspot id);
function interact {
// things happening
}
function searchArray (int whichvalue) {
int search = 0;
while (search > -1) {
search ++;
if (array[search]==whichvalue) {
? return true; ?
}
if (search == 100) { // 100=array size
? return false; ?
}
}
}
if (searchArray(1)==true) Display ("bla bla bla");
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.042 seconds with 18 queries.