
Originally Posted by
Ubbel
Some structures, such as the way to make a query, I make them as arcturus, basically because we like that way.
This is the way in which I get the item through its pageId *and realized the consult*
And the constructor.
The socket is the one made by Burak.
Gameserver - Pastebin.com.
As I said before, the burak base is still being remodeled, some things, obviously not because it would be better
@
Glaceon when i finish the buy and place furniture in rooms, I will try to open a hotel test, but I assure you nothing because I do not have a vps
Sorry for my bad english :(
Very nice, but you don't have to use a ternary operator for variables like this.isLimited.
Instead of:
Code:
this.isLimited = <number>row.is_limited == 1 ? true : false;
save yourself some time by just doing this:
Code:
this.isLimited = <number>row.is_limited == 1;