Re : San Fierro Cops-Robbers-RPG v1.0 -
Titans - 26.05.2012
Merci vestax
et quand je veux le faire sur le jeu ca me met que le ID [66542] n'est pas connectй et y a pas de commande pour Spawn vйhicule :/
english
and when I want it on the game it makes me put the ID [66542] is not connected and there is no command to Spawn vehicle :/
Re: San Fierro Cops-Robbers-RPG v1.0 -
Desi_Dude - 27.05.2012
Nice gm

But i am getting error :O
Unable to exec file 'server.cfg'.
Your password must be changed from the default password, please change it.
I cannot find the solution !!! Help please!
Re: San Fierro Cops-Robbers-RPG v1.0 -
Menaz - 27.05.2012
this is an Awesome Gm :
Re: San Fierro Cops-Robbers-RPG v1.0 -
Smokkr - 27.05.2012
I love your GameMode man! 10/10
Re: San Fierro Cops-Robbers-RPG v1.0 -
DjoleRazbijac - 27.05.2012
Quote:
Originally Posted by Desi_Dude
Nice gm  But i am getting error :O
Unable to exec file 'server.cfg'.
Your password must be changed from the default password, please change it.
I cannot find the solution !!! Help please!
|
Same problem as mine,i will work on it soon,so i will inform you about it..
Re: San Fierro Cops-Robbers-RPG v1.0 -
AndreSAMP - 28.05.2012
Great job, I'm will use it maybe.
Re: San Fierro Cops-Robbers-RPG v1.0 -
Couch Potatoe - 29.05.2012
Error occurs when I try to compile it.
Code:
:\Program Files\Rockstar Games\GTA San Andreas\SFCRRPG\gamemodes\SFCRRPG.pwn(42) : fatal error 100: cannot read from file: "irc"
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: San Fierro Cops-Robbers-RPG v1.0 -
S_ILYa™ - 29.05.2012
Quote:
Originally Posted by Couch Potatoe
Error occurs when I try to compile it.
Code:
:\Program Files\Rockstar Games\GTA San Andreas\SFCRRPG\gamemodes\SFCRRPG.pwn(42) : fatal error 100: cannot read from file: "irc"
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
|
goto ****** and type ( irc.inc free download ) and then save it to your [ SERVER/PAWNO/INCLUDE ] folder and done compile again !!!!
Re: San Fierro Cops-Robbers-RPG v1.0 -
Couch Potatoe - 29.05.2012
No download available. :/
Can you please upload a mirror?
**Edit** I also need these includes:
SFCRRPGdudb
streamer
dprops
sscanf2
time
Thanks.
Re : San Fierro Cops-Robbers-RPG v1.0 -
kings24 - 29.05.2012
Thanks!
Re: San Fierro Cops-Robbers-RPG v1.0 -
Couch Potatoe - 29.05.2012
Quote:
Originally Posted by Couch Potatoe
No download available. :/
Can you please upload a mirror?
**Edit** I also need these includes:
SFCRRPGdudb
streamer
dprops
sscanf2
time
Thanks.
|
Bump
Re: San Fierro Cops-Robbers-RPG v1.0 -
DjoleRazbijac - 29.05.2012
Quote:
Originally Posted by Couch Potatoe
Bump
|
getting post count dont you?
There is download link working,also includes are in download,so those posts u posted are useless
Re: San Fierro Cops-Robbers-RPG v1.0 -
Couch Potatoe - 30.05.2012
Quote:
Originally Posted by DjoleRazbijac
getting post count dont you?
There is download link working,also includes are in download,so those posts u posted are useless
|
No, not getting my post count up, I didn't get answers that's why.
And thanks, it works. 10/10 GM

Re: San Fierro Cops-Robbers-RPG v1.0 -
Stevo127 - 03.06.2012
Ofcoarse it works, if you follow my instructions correctly, then it is basic.
Re: San Fierro Cops-Robbers-RPG v1.0 -
CrazyChoco - 03.06.2012
of course *

you made a little mistake :P
Re: San Fierro Cops-Robbers-RPG v1.0 -
sam1929 - 04.06.2012
how do i change spectate to spec i try to scrip it my self but it did not go so well here is the code
----------------------------------------------------------------------------------------------
Code:
dcmd_spectate(playerid,params[])
{
new string[128];
new ID;
if(sscanf(params,"u",ID))
{
SendClientMessage(playerid,COLOR_ERROR,"USAGE: /spectate (Player Name/ID)");
return 1;
}
if(!IsPlayerConnected(ID))
{
format(string,sizeof(string),"The player ID (%d) is not connected to the server. You cannot spectate them.",ID);
SendClientMessage(playerid,COLOR_ERROR,string);
return 1;
}
if(IsSpawned[playerid] != 1)
{
SendClientMessage(playerid,COLOR_ERROR,"You must be alive and spawned in order to be able to use this command.");
return 1;
}
if(playerid == ID)
{
SendClientMessage(playerid,COLOR_ERROR,"You cannot spectate yourself, how could that even be possible?");
return 1;
}
if(IsSpawned[ID] != 1)
{
format(string,sizeof(string),"%s(%d) is not spawned. You cannot place spectate dead people ..",PlayerName(ID),ID);
SendClientMessage(playerid,COLOR_ERROR,string);
return 1;
}
if(IsPlayerInAnyVehicle(ID))
{
new vehid = GetPlayerVehicleID(ID);
TogglePlayerSpectating(playerid, 1);
PlayerSpectateVehicle(playerid, vehid);
SetPlayerInterior(playerid,GetPlayerInterior(ID));
SpectatingPlayer[playerid] =ID;
IsBeingSpectated[ID] =1;
return 1;
}
TogglePlayerSpectating(playerid, 1);
PlayerSpectatePlayer(playerid, ID);
SetPlayerInterior(playerid,GetPlayerInterior(ID));
SpectatingPlayer[playerid] =ID;
IsBeingSpectated[ID] =1;
return 1;
}
-----------------------------------------------------------------------------------------------------------
and code again
Code:
dcmd_specoff(playerid,params[])
{
#pragma unused params
if(SpectatingPlayer[playerid] == -1)
{
SendClientMessage(playerid,COLOR_ERROR,"You are not spectating a player. How can you spectating them?");
return 1;
}
TogglePlayerSpectating(playerid,0);
IsBeingSpectated[SpectatingPlayer[playerid]] =0;
SpectatingPlayer[playerid] =-1;
return 1;
}
--------------------------------------------------------------------------------------------------------------
ty guys all the best to you and to yours
Re: San Fierro Cops-Robbers-RPG v1.0 -
San1 - 10.06.2012
Hey someone know how to fix the jupiter hollow burger shot robbery when i type /robstore there it wont respond
Re: San Fierro Cops-Robbers-RPG v1.0 -
DjoleRazbijac - 12.06.2012
Quote:
Originally Posted by Bulderdog
How can i edit the auto messages? (Edit them or Delete them?)
And how can i fix the banner below? Where it stands Version 1.1 www.something.com
Please answer fast 
|
Dude,its about 15k line,i think,search it from end of script to find them,so you can edit them to your own,or simply if you dont like them,delete em.
Re: San Fierro Cops-Robbers-RPG v1.0 -
Snappi - 12.06.2012
[13:52:39] Script[gamemodes/SFCRRPG.amx]: Run time error 19: "File or function is not found"
[13:52:39] Number of vehicle models: 0
Whats is the problem, its updated to 0.3e and i have all the files. IRC False and i get this problem. Can someone help me? (It isnt mysql)
Re : San Fierro Cops-Robbers-RPG v1.0 -
Davy' - 19.06.2012
Quelqu'un l'aurai en 0.3e et qu'il fonctionne