Skip to content

Instantly share code, notes, and snippets.

View dennorske's full-sized avatar
🐍

denNorske dennorske

🐍
View GitHub Profile
@dennorske
dennorske / cmdparser.py
Created April 24, 2022 20:47 — forked from Cheaterman/cmdparser.py
cmdparser.py
import inspect
import types
import samp
t_unauthorized = 'You are not allowed to use this command'
t_unauthd_color = 0xFF1111FF
_cmd_list = dict()
current_cmd = None