Skip to content

Instantly share code, notes, and snippets.

@ZaSpai
Created July 15, 2014 11:27
Show Gist options
  • Select an option

  • Save ZaSpai/0893719ab18901f9026c to your computer and use it in GitHub Desktop.

Select an option

Save ZaSpai/0893719ab18901f9026c to your computer and use it in GitHub Desktop.
//Perform delete of QC Weapon
//argument0: weapon ID
var wepDel;
wepDel = ds_list_find_value(global.qcWeps, wepID);
with (wepDel) {
instance_destroy();
}
ds_list_delete(global.qcWeps, ds_list_find_index(global.qcWeps, wepDel));
with(global.QCWep) {
if (argument0 < wepID) {
wepID -= 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment