[QUOTE=roleplay word;21802256]Thanks to me he isnt finishing G3.[/QUOTE]
pff, stupid kid, wtf have you done? We all waited for G3 to come out -.-'
He's an overzealous idiot who always wants to be special. He had nothing to do with it, me being hired at a new job did.
[QUOTE=JWJ;21823338]He's an overzealous idiot who always wants to be special. He had nothing to do with it, me being hired at a new job did.[/QUOTE]
Agreed, and congratulations on the job, what is it?
Nori is a sexy beast in his office outfit.
*Cough* So... much... *cough cough* ass-kissing...
*Falls over and dies of suffocation* :ghost:
Anyways, back to gamemode discussion.
[QUOTE=grea$emonkey;21828518]*Cough* So... much... *cough cough* ass-kissing...
*Falls over and dies of suffocation* :ghost:
Anyways, back to gamemode discussion.[/QUOTE]
:love:
[editline]06:18AM[/editline]
[QUOTE=Katsu63;21828446]Nori is a sexy beast in his office outfit.[/QUOTE]
Ef-Ay-Gee
[QUOTE=SchumacherAlt;21829370]
Ef-Ay-Gee[/QUOTE]
Bend over little boy.
[QUOTE=SchumacherAlt;21824781]Agreed, and congratulations on the job, what is it?[/QUOTE]
Programmer/MIS support for four companies as a shared resource. All of them having something to do with medical or insurance related stuff.
[QUOTE=JWJ;21835045]Programmer/MIS support for four companies as a shared resource. All of them having something to do with medical or insurance related stuff.[/QUOTE]
Oh that's cool, I guess.
[QUOTE=Tokiz;21809713]pff, stupid kid, wtf have you done? We all waited for G3 to come out -.-'[/QUOTE]
I am not a kid, and you are very childish.
In steam you asked me to hand over both my servers to do something together.
[editline]05:02PM[/editline]
[QUOTE=grea$emonkey;21804265]That's nothing to be proud of.[/QUOTE]
You helped :v:
[editline]05:03PM[/editline]
Anyways back on topic, congrats on the job and I hope you make heaps of money.
you told us you were 14
you're a kid
Stop derailing.
[QUOTE=Knallex;21902063]you told us you were 14
you're a kid[/QUOTE]
I really don't want to derail. But
14 =/= Kid
14-17 = Teenager
Please get this back on track
[highlight](User was banned for this post ("Derailing" - grea$emonkey))[/highlight]
Aaaaanyway...obvious question.
How stable is this anyway? Is it half done, or complete?
Really, really, dumbass question: Where are the SQL tables supposed to be placed?
[QUOTE=Red Toaster;21910375]Really, really, dumbass question: Where are the SQL tables supposed to be placed?[/QUOTE]
In a database.
[QUOTE=JWJ;21671804]Considering I'm such a nice guy I just went ahead and rebuilt the SQL tables myself.
(I'm Nori if you haven't figured it out yet)
[code]
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `admin`
-- ----------------------------
DROP TABLE IF EXISTS `admin`;
CREATE TABLE `admin` (
`steamid` varchar(50) NOT NULL,
`flags` longtext NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of admin
-- ----------------------------
-- ----------------------------
-- Table structure for `characters`
-- ----------------------------
DROP TABLE IF EXISTS `characters`;
CREATE TABLE `characters` (
`id` int(100) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`model` varchar(500) NOT NULL,
`money` int(100) NOT NULL,
`loan` int(100) NOT NULL,
`owner` varchar(50) NOT NULL,
`faction` varchar(50) NOT NULL,
`class` varchar(50) NOT NULL,
`flags` longtext NOT NULL,
`displaymodel` varchar(500) NOT NULL,
`inventory` longtext NOT NULL,
`occupation` varchar(100) NOT NULL,
`description` longtext NOT NULL,
`biography` longtext NOT NULL,
`equipment` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of characters
-- ----------------------------
-- ----------------------------
-- Table structure for `config`
-- ----------------------------
DROP TABLE IF EXISTS `config`;
CREATE TABLE `config` (
`key` varchar(50) NOT NULL,
`value` longtext NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of config
-- ----------------------------
INSERT INTO `config` VALUES ('maxinventoryweight', '30');
INSERT INTO `config` VALUES ('default_money', '300');
INSERT INTO `config` VALUES ('time', '1 1 2012 1');
-- ----------------------------
-- Table structure for `doors`
-- ----------------------------
DROP TABLE IF EXISTS `doors`;
CREATE TABLE `doors` (
`map` varchar(100) NOT NULL,
`id` int(100) NOT NULL AUTO_INCREMENT,
`x` float(100,0) NOT NULL,
`y` float(100,0) NOT NULL,
`z` float(100,0) NOT NULL,
`doorname` varchar(100) NOT NULL,
`property` int(100) NOT NULL,
`ownerkeys` longtext NOT NULL,
`price` int(100) NOT NULL,
`flags` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of doors
-- ----------------------------
-- ----------------------------
-- Table structure for `factionclass`
-- ----------------------------
DROP TABLE IF EXISTS `factionclass`;
CREATE TABLE `factionclass` (
`id` varchar(50) NOT NULL,
`type` varchar(1) NOT NULL,
`enabled` varchar(1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of factionclass
-- ----------------------------
INSERT INTO `factionclass` VALUES ('civilian', '1', '1');
INSERT INTO `factionclass` VALUES ('combine', '1', '1');
INSERT INTO `factionclass` VALUES ('resistance', '1', '1');
INSERT INTO `factionclass` VALUES ('citizen', '2', '1');
INSERT INTO `factionclass` VALUES ('cityadmin', '2', '1');
INSERT INTO `factionclass` VALUES ('eow', '2', '1');
INSERT INTO `factionclass` VALUES ('mp', '2', '1');
INSERT INTO `factionclass` VALUES ('ow', '2', '1');
INSERT INTO `factionclass` VALUES ('rebel', '2', '1');
-- ----------------------------
-- Table structure for `items`
-- ----------------------------
DROP TABLE IF EXISTS `items`;
CREATE TABLE `items` (
`name` varchar(100) NOT NULL,
`enabled` varchar(1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of items
-- ----------------------------
INSERT INTO `items` VALUES ('ration', '1');
INSERT INTO `items` VALUES ('rebelvest', '1');
-- ----------------------------
-- Table structure for `properties`
-- ----------------------------
DROP TABLE IF EXISTS `properties`;
CREATE TABLE `properties` (
`map` varchar(100) NOT NULL,
`id` int(100) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`doors` longtext NOT NULL,
`flags` longtext NOT NULL,
`price` int(100) NOT NULL,
`ownerkeys` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of properties
-- ----------------------------
-- ----------------------------
-- Table structure for `tooltrust`
-- ----------------------------
DROP TABLE IF EXISTS `tooltrust`;
CREATE TABLE `tooltrust` (
`steamid` varchar(50) NOT NULL,
`tools` longtext NOT NULL,
PRIMARY KEY (`steamid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of tooltrust
-- ----------------------------
[/code]Note that this gamemode was never supposed to be released, wasn't 100% polished up, it's not friendly to the common server host, it's not efficient at all, and it still has debugging shit everywhere.
Now only if I could finish CSG3..[/QUOTE]
Quote incase JWJ turning evil.
[QUOTE=Legental;21927458]Quote incase JWJ turning evil.[/QUOTE]
And I was just about to charge $5 for the tables too :saddowns:
[sp]im kidding[/sp]
Very, Very well done :dance:
I have a 30 slot server + Mysql and stuff + the tostring fix + fastdownload, yet I continue getting the error. on line 62 with the escape
after pressing accept.
On line 62, and 63 copy and paste of the nearby lines, End and return to string are the 62, and 63
require("tmysql")
tmysql.oldescape = tmysql.escape
function tmysql.escape(val)
if val == nil then
print("TMYSQL ESCAPE GOT A NIL VALUE!")
return nil
end
return tostring(tmysql.oldescape(val))
end
Gamemode makes me want to continue to pester Nori to finish G3.
Ya guys know Nexus was released right?
[QUOTE=Aftermath;21975922]Ya guys know Nexus was released right?[/QUOTE]
Your point being?
[QUOTE=Aftermath;21975922]Ya guys know Nexus was released right?[/QUOTE]
Not everything revolves around Nexus, it's not like if you have a roleplaying server it [b]has[/b] to be Nexus. Nexus is good, but so is Theogony with a bit of work.
Please don't advertise Nexus in this thread, Nori is a good friend of mine and Theogony is a good script.
[QUOTE=kuropixel;21986869]Please don't advertise Nexus in this thread, Nori is a good friend of mine and Theogony is a good script.[/QUOTE]
Holla.
Anyone have a fixed NPC animation script for this?
Nori told me the animations worked when I asked him to test them... Maybe either I or him misunderstood.
[QUOTE=Knallex;22016161]Nori told me the animations worked when I asked him to test them... Maybe either I or him misunderstood.[/QUOTE]
Since the update they were broken.
:(
Sorry, you need to Log In to post a reply to this thread.