Skip to content

Instantly share code, notes, and snippets.

View AzzaDeveloper's full-sized avatar

Cyfer AzzaDeveloper

  • 19:11 (UTC -12:00)
View GitHub Profile
@AzzaDeveloper
AzzaDeveloper / types.luau
Created March 16, 2025 14:34
Roblox Character Type (courtesy of ffrosfall!)
```lua
export type CharacterChildren = {
Humanoid: Humanoid & {
Animator: Animator,
},
Shirt: Shirt,
Pants: Pants,
["Body Colors"]: BodyColors,
["Shirt Graphic"]: ShirtGraphic,
HumanoidRootPart: Part & {
@AzzaDeveloper
AzzaDeveloper / astar.py
Last active August 9, 2024 11:55
COSC2968|COSC3053 Foundations of Artificial Intelligence for STEM: Assignment 2
import pygame
import itertools
import math
import time
import random
# Constants
MAZE_GENERATION_VISUALIZATION = True # Set to True to visualize the maze generation process
MAZE_GAP = 2 # The gap between the walls in the maze
#
@AzzaDeveloper
AzzaDeveloper / order.lua
Last active August 1, 2024 04:16
Shrine of order algorithm
local MAXIMUM_REDUCTION = 25
-- Table noting racial stats
local racialStats = {
Khan = {
Strength = 2,
Agility = 2,
},
}
-- This is the stat table that will be modified by Shrine of Order.
local startingStats = {