|
|
Pretty much all I got to say about it.
If you guys ever want some extra support, I be willing to develop a bit for this (server side - I do not know protcols above 317 and hate client work). Completely free of charge, of course. Just seems like a solid project thus far and I would like it to see it continue going somewhere.
Gl with the project.![]()


Looking promising, can't wait for release.

September 13th, 2020
We're still at it, folks. Today we've progressed on equipment bonuses.
Additionally, we've progressed on our data storage system. We'll be using postgres DBMS. Here's a sneak peak at our schema thus far.
![]()
Can I get a link to the discord? Would love to follow this project more closely.![]()
can anyone pm me the discord?

October 21st, 2020
Thanks for the patience everyone! There's a lot going on behind the scenes that you don't see, as well as a lot going on in our personal lives. Regardless, we're trying our best to write high quality, reliable code.
If you're interested in what's going on, send me a [Only registered and activated users can see links. ] to join the Discord and stay up-to-date. Don't forget to [Only registered and activated users can see links. ]to the [Only registered and activated users can see links. ]as well (you can get notifications over your control panel or email whenever there's a new post).
Update
Banking
Greg has been working on banking - check out the media below.
![]()

great project![]()

Forums have received a brief update today.
![]()

Yikes. Why would you use username as the primary key? Use a numeric PK with username as an (unique) attribute of the player table. Something akin to this would be much better imo.
Regardless, really like this project. Best of luck.Code:create table if not exists dusk.item_container ( id int auto_increment primary key, type varchar(50) not null, constraint item_container_type_uindex unique (type) ); create table if not exists dusk.player ( id int auto_increment primary key, username varchar(12) not null, constraint player_username_uindex unique (username) ); create table if not exists dusk.player_item_container ( player_id int not null, item_container_id int not null, tab int default 0 not null, slot int not null, item_id int not null, item_amount int not null, primary key (player_id, item_container_id, tab, slot), constraint player_item_container_item_container_id_fk foreign key (item_container_id) references dusk.item_container (id), constraint player_item_container_player_id_fk foreign key (player_id) references dusk.player (id) ); create index player_item_container_item_id_index on dusk.player_item_container (item_id);
| « Osadventure (2009 Remake) | Venomite Semi-Custom 718/OSRS » |
| Thread Information |
Users Browsing this ThreadThere are currently 1 users browsing this thread. (0 members and 1 guests) |