[GameMode] Next Generation Roleplay
#21

Quote:
Originally Posted by Faskis
View Post
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
View Post
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
View Post
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.
Reply
#22

isn't this a leaked script ?
Reply
#23

Quote:
Originally Posted by DavidGravelli
View Post
isn't this a leaked script ?
This is the official release.
Reply
#24

Well, you can give us the UCP too
Reply
#25

Quote:
Originally Posted by Immortal99
View Post
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
View Post
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
View Post
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/
Reply
#26

Without the database your basically fucked lmao
Reply
#27

well.. ok lol
Reply
#28

Thanks for polluting the internet and probably hosted list with crap servers.
Reply
#29

Good Job
Reply
#30

Nice, it has support for window users
https://github.com/NextGenerationGam...Window%20users
Reply
#31

More crap servers are coming up
Reply
#32

Honestly this is shame! The script was sold for more than 1k dollars and now you are releasing it...
Reply
#33

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.
Reply
#34

Why in my pc stuck on dedicated server (sa-mp server.exe) stuck on ysi version text and gamemode not response
Reply
#35

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"
Reply
#36

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!
Reply
#37

Quote:
Originally Posted by Meinstad
Посмотреть сообщение
Good to see the developers get their credits. Good job!
I was actually excluded for some reason.
Reply
#38

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;
}
Reply
#39

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?
Reply
#40

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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)