Skip to content

RyanHaire/gs2-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Graal Guild System with SQLite

--Guild Table--

Create table guild (
GuildName varchar(255) not null primary key, 
OwnerGraalId varchar(255) not null unique,
MemberCount int not null default 1
);

--Guild_GuildMember Table--

Create table guild_guildmember (
GuildName varchar(255) not null,
MemberGraalId varchar(255) not null
);

--GuildMember Table--

Create table guildmember (
GraalId varchar(255) not null primary key
);

Create 'AdminPanel' weapon and add to your weapons. Press 'o' to open the admin panel.

About

Graal Online scripts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors