Re: Next Generation Roleplay -
Sew_Sumi - 12.01.2018
Quote:
Originally Posted by Faskis
As for the database, aside from Horizon Roleplay, no one will be granted access, nor will it be made publicly available.
|
So is that database 'intact' or is my account specifically deleted by the crappy people who were in control?
Quote:
Originally Posted by Meller
Not that he needs a community owners permission to release something the OP wrote under the GNU lic.
|
Wasn't under GNU when we were originally scripting it... So to simply have that tacked in to cover-all, is pretty shiesty...
Quote:
Originally Posted by OscarMike
Was it scripted by you? And what was the reason behind open sourcing it?
|
Many had hands in the script. It wasn't scripted by any one person.
Re: Next Generation Roleplay -
DavidGravelli - 12.01.2018
isn't this a leaked script ?
Re: Next Generation Roleplay -
Zeth - 12.01.2018
Quote:
Originally Posted by DavidGravelli
isn't this a leaked script ?
|
This is the official release.
Re: Next Generation Roleplay -
Immortal99 - 12.01.2018
Well, you can give us the UCP too
Re: Next Generation Roleplay -
BornHuman - 12.01.2018
Quote:
Originally Posted by Immortal99
Well, you can give us the UCP too
|
UCP was coded by ShaneRoberts and as far as I know is his property
Quote:
Originally Posted by Sunehildeep
NEWS: New NGG edit servers are on their way and will reach SA:MP by this month soon. Thank you.
Lol
|
It'll take them a minute to figure out how to work that database since once hasn't been provided for them. The SQL files just create the structure. Most dynamic aspects of the script require their to be rows already inserted for the script to actually 'work'. But nevertheless, I'm sure they'll start popping up left and right.
Quote:
Originally Posted by AlexMSK
Btw, this wasnt approved by Devin (the owner) or dev director, Farva just got pissed off and released it.
|
The website even has an announcement regarding it. This is a true release requested by Devin.
https://www.ng-gaming.net/
Re: Next Generation Roleplay -
Eric_White - 12.01.2018
Without the database your basically fucked lmao
Re: Next Generation Roleplay -
ConnorHunter - 12.01.2018
well.. ok lol
Re: Next Generation Roleplay -
Calgon - 12.01.2018
Thanks for polluting the internet and probably hosted list with crap servers.
Re: Next Generation Roleplay -
SnowBorn - 12.01.2018
Good Job
Re: Next Generation Roleplay -
BigETI - 12.01.2018
Nice, it has support for window users
https://github.com/NextGenerationGam...Window%20users
Re: Next Generation Roleplay -
Ilias_ - 12.01.2018
More crap servers are coming up
Re: Next Generation Roleplay -
AlexMSK - 12.01.2018
Honestly this is shame! The script was sold for more than 1k dollars and now you are releasing it...
Re: Next Generation Roleplay -
Ritzy2K - 12.01.2018
Quote:
Originally Posted by AlexMSK
Honestly this is shame! The script was sold for more than 1k dollars and now you are releasing it...
|
This is your 3rd absolutely rubbish reply at this thread which makes unnecessary assumptions, and which cleary doesn't add anything productive to the thread. Hence, spam.
Re: Next Generation Roleplay -
faizal16 - 12.01.2018
Why in my pc stuck on dedicated server (sa-mp server.exe) stuck on ysi version text and gamemode not response
Re: Next Generation Roleplay -
Shaneisace - 13.01.2018
Quote:
Originally Posted by AlexMSK
Honestly this is shame! The script was sold for more than 1k dollars and now you are releasing it...
|
if that's the case then good; Why should someone benefit when it isn't theirs?
Generally that's how it goes if someone else is selling you release to ruin their "fun"
Re: Next Generation Roleplay -
Meinstad - 13.01.2018
Finaly a release of something shitty.. Haven't been on SA-MP forums for over a year but this go me into it. Good to see the developers get their credits. Good job!
Re: Next Generation Roleplay -
BornHuman - 13.01.2018
Quote:
Originally Posted by Meinstad
Good to see the developers get their credits. Good job!
|
I was actually excluded for some reason.
Re: Next Generation Roleplay -
WhoIsYourDaddy - 13.01.2018
There is something wrong with this code below and I can't seem to see it. Can anyone help?
Errors are like these:
./includes/dynamic/gates.pwn(1065) : error 075: input line too long (after substitutions)
./includes/dynamic/gates.pwn(1066) : error 037: invalid string (possibly non-terminated string)
./includes/dynamic/gates.pwn(1066) : error 017: undefined symbol "UPDATE"
./includes/dynamic/gates.pwn(1066) : error 029: invalid expression, assumed zero
./includes/dynamic/gates.pwn(1066) : fatal error 107: too many error messages on one line
Код:
stock SaveGate(id) {
mysql_format(MainPipeline, szMiscArray, sizeof(szMiscArray), "UPDATE `gates` SET \
`HID`=%d, \
`Speed`=%f, \
`Range`=%f, \
`Model`=%d, \
`VW`=%d, \
`Int`=%d, \
`Pass`='%e', \
`PosX`=%f, \
`PosY`=%f, \
`PosZ`=%f, \
`RotX`=%f, \
`RotY`=%f, \
`RotZ`=%f, \
`PosXM`=%f, \
`PosYM`=%f, \
`PosZM`=%f, \
`RotXM`=%f, \
`RotYM`=%f, \
`RotZM`=%f, \
`Allegiance`=%d, \
`GroupType`=%d, \
`GroupID`=%d, \
`RenderHQ`=%d, \
`Timer`=%d, \
`Automate`=%d, \
`Locked`=%d, \
`TIndex`=%d, \
`TModel`=%d, \
`TTXD`='%e', \
`TTexture`='%e', \
`TColor`=%d, \
`Facility`=%d \
WHERE `ID` = %d",
GateInfo[id][gHID],
GateInfo[id][gSpeed],
GateInfo[id][gRange],
GateInfo[id][gModel],
GateInfo[id][gVW],
GateInfo[id][gInt],
GateInfo[id][gPass],
GateInfo[id][gPosX],
GateInfo[id][gPosY],
GateInfo[id][gPosZ],
GateInfo[id][gRotX],
GateInfo[id][gRotY],
GateInfo[id][gRotZ],
GateInfo[id][gPosXM],
GateInfo[id][gPosYM],
GateInfo[id][gPosZM],
GateInfo[id][gRotXM],
GateInfo[id][gRotYM],
GateInfo[id][gRotZM],
GateInfo[id][gAllegiance],
GateInfo[id][gGroupType],
GateInfo[id][gGroupID],
GateInfo[id][gRenderHQ],
GateInfo[id][gTimer],
GateInfo[id][gAutomate],
GateInfo[id][gLocked],
GateInfo[id][gTIndex],
GateInfo[id][gTModel],
GateInfo[id][gTTXD],
GateInfo[id][gTTexture],
GateInfo[id][gTColor],
GateInfo[id][gFacility],
id+1
);
mysql_tquery(MainPipeline, szMiscArray, "OnQueryFinish", "i", SENDDATA_THREAD);
return 0;
}
Re: Next Generation Roleplay -
LasVegas - 13.01.2018
Quote:
Originally Posted by WhoIsYourDaddy
There is something wrong with this code below and I can't seem to see it. Can anyone help?
Errors are like these:
./includes/dynamic/gates.pwn(1065) : error 075: input line too long (after substitutions)
./includes/dynamic/gates.pwn(1066) : error 037: invalid string (possibly non-terminated string)
./includes/dynamic/gates.pwn(1066) : error 017: undefined symbol "UPDATE"
./includes/dynamic/gates.pwn(1066) : error 029: invalid expression, assumed zero
./includes/dynamic/gates.pwn(1066) : fatal error 107: too many error messages on one line
Код:
stock SaveGate(id) {
mysql_format(MainPipeline, szMiscArray, sizeof(szMiscArray), "UPDATE `gates` SET \
`HID`=%d, \
`Speed`=%f, \
`Range`=%f, \
`Model`=%d, \
`VW`=%d, \
`Int`=%d, \
`Pass`='%e', \
`PosX`=%f, \
`PosY`=%f, \
`PosZ`=%f, \
`RotX`=%f, \
`RotY`=%f, \
`RotZ`=%f, \
`PosXM`=%f, \
`PosYM`=%f, \
`PosZM`=%f, \
`RotXM`=%f, \
`RotYM`=%f, \
`RotZM`=%f, \
`Allegiance`=%d, \
`GroupType`=%d, \
`GroupID`=%d, \
`RenderHQ`=%d, \
`Timer`=%d, \
`Automate`=%d, \
`Locked`=%d, \
`TIndex`=%d, \
`TModel`=%d, \
`TTXD`='%e', \
`TTexture`='%e', \
`TColor`=%d, \
`Facility`=%d \
WHERE `ID` = %d",
GateInfo[id][gHID],
GateInfo[id][gSpeed],
GateInfo[id][gRange],
GateInfo[id][gModel],
GateInfo[id][gVW],
GateInfo[id][gInt],
GateInfo[id][gPass],
GateInfo[id][gPosX],
GateInfo[id][gPosY],
GateInfo[id][gPosZ],
GateInfo[id][gRotX],
GateInfo[id][gRotY],
GateInfo[id][gRotZ],
GateInfo[id][gPosXM],
GateInfo[id][gPosYM],
GateInfo[id][gPosZM],
GateInfo[id][gRotXM],
GateInfo[id][gRotYM],
GateInfo[id][gRotZM],
GateInfo[id][gAllegiance],
GateInfo[id][gGroupType],
GateInfo[id][gGroupID],
GateInfo[id][gRenderHQ],
GateInfo[id][gTimer],
GateInfo[id][gAutomate],
GateInfo[id][gLocked],
GateInfo[id][gTIndex],
GateInfo[id][gTModel],
GateInfo[id][gTTXD],
GateInfo[id][gTTexture],
GateInfo[id][gTColor],
GateInfo[id][gFacility],
id+1
);
mysql_tquery(MainPipeline, szMiscArray, "OnQueryFinish", "i", SENDDATA_THREAD);
return 0;
}
|
is it even working for u, i mean the server server.exe not showing any errors?
Re: Next Generation Roleplay -
WhoIsYourDaddy - 13.01.2018
Quote:
Originally Posted by LasVegas
is it even working for u, i mean the server server.exe not showing any errors?
|
I couldn't compile the NGRP.pwn because of these errors so I don't know yet.