Skip to content

Instantly share code, notes, and snippets.

@mrowrpurr
Last active July 6, 2022 01:29
Show Gist options
  • Save mrowrpurr/69330e0ef4905c35964e8462558540df to your computer and use it in GitHub Desktop.
Save mrowrpurr/69330e0ef4905c35964e8462558540df to your computer and use it in GitHub Desktop.
procedure setup_proc_names begin
proc_names = {
0: "no_proc",
1: "start_proc",
2: "spatial_proc",
3: "description_proc",
4: "pickup_proc",
5: "drop_proc",
6: "use_proc",
7: "use_obj_on_proc",
8: "use_skill_on_proc",
9: "use_ad_on_proc",
10: "use_disad_on_proc",
11: "talk_proc",
12: "critter_proc",
13: "combat_proc",
14: "damage_proc",
15: "map_enter_proc",
16: "map_exit_proc",
17: "create_proc",
18: "destroy_proc",
19: "barter_init_proc",
20: "barter_proc",
21: "look_at_proc",
22: "timed_event_proc",
23: "map_update_proc"
};
fix_array(proc_names);
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment