Ksna's cops and robbers

Started by Ksna, Jul 23, 2015, 10:37 AM

Previous topic - Next topic

Thijn

Quote from: [VSS]Shawn on Jul 23, 2015, 12:35 PMi dont know :P
Then go away and come back when your brain has developed.

Ksna

https://www.youtube.com/watch?v=d89esg2bzuA

and default password for wamp and xaamp is blank i.e " "

[VSS]Shawn

yaar Thijn I dont know about Fuzzie Account System and Ksna Youtube is block in pak

Ksna

try hotspot shield or some chrome addons

KAKAN

oh no

NE.DiamondBlue

Quote from: Thijn on Jul 23, 2015, 12:19 PM
Quote from: [VSS]Shawn on Jul 23, 2015, 12:12 PMsorry for spam but this is error

error in mysql connection failed make sure connection details are correct


 :-\
What do you think that error means?
Same error
i am also not understanding as  i saw this error first time
NE.CrystalBlue is a very great person.

Quoteit does not mattter that his name is not under vcmp developers but i hope his name will come as he is a great scripter, works hards, help others, hnot selfish

.

Quote from: NE.DiamondBlue on Jul 23, 2015, 03:04 PM
Quote from: Thijn on Jul 23, 2015, 12:19 PM
Quote from: [VSS]Shawn on Jul 23, 2015, 12:12 PMsorry for spam but this is error

error in mysql connection failed make sure connection details are correct


 :-\
What do you think that error means?
Same error
i am also not understanding as  i saw this error first time


Because you are both stupid. No offence. That's just the truth.
.

Ksna

Post your error guys and  see mysql connect line and change it to your username and password


I had changed password as password  but it was blank by default

DizzasTeR

Quote from: Ksna on Jul 23, 2015, 10:37 AMThis script is made from scratch. Not from leaked vccnr.

Very good!

Quote from: Ksna on Jul 23, 2015, 10:37 AMCredits: ... Hellboy & Blacklight & Cyber ( For making first Vccnr)

Lol wtf?! That means I should credit Gudio for making the first multigame-mode server as well? rofl.

ℛḝξ☂

[spoiler=Nice Command]
else if (( cmd == "shutdown" )||( cmd == "driveby" )||( cmd == "driveonwater" )|| ( cmd == "fastswitch" )|| ( cmd == "jumpswitch" )|| ( cmd == "taxiboostjump" )||( cmd == "stuntbike" ) || ( cmd == "deathmessages" ) || ( cmd == "joinmessages" )|| ( cmd == "friendlyfire" )|| ( cmd == "shootinair" )|| ( cmd == "syncframelimiter" )|| ( cmd == "framelimiter" )|| ( cmd == "showonradar" )|| ( cmd == "shownametags" )|| ( cmd == "perfecthandling" )|| ( cmd == "flyingcars" )||
( cmd == "maxplayers" )|| ( cmd == "gravity" )|| ( cmd == "gamespeed" )|| ( cmd == "waterlevel" )|| ( cmd == "maxheight" )|| ( cmd == "hour" )|| ( cmd == "minute" )|| ( cmd == "timerate" )|| ( cmd == "weather" )||
( cmd == "servername" )|| ( cmd == "gamemodename" )|| ( cmd == "serverpassword" )){

if( stats[ player.ID ].level < 0 ) return 0;
else if ( cmd == "shutdown" ) ShutdownServer();
else if (!text) MessagePlayer( "Wrong Syntax! /"+ cmd +" on/off/number/text ", player );
else if ( text == "on" ) {
if ( cmd == "driveby" )SetDrivebyEnabled( true );
else if ( cmd == "driveonwater" )SetDriveOnWater( true );
else if ( cmd == "fastswitch" )SetFastSwitch( true );
else if ( cmd == "jumpswitch" )SetJumpSwitch( true );
else if ( cmd == "taxiboostjump" )SetTaxiBoostJump( true );
else if ( cmd == "stuntbike" )SetStuntBike( true );
else if ( cmd == "deathmessages" )SetDeathMessages( true );
else if ( cmd == "joinmessages" )SetJoinMessages( true );
else if ( cmd == "friendlyfire" )SetFriendlyFire(true);
else if ( cmd == "shootinair" )SetShootInAir( true );
else if ( cmd == "syncframelimiter" )SetSyncFrameLimiter( true );
else if ( cmd == "framelimiter" )SetFrameLimiter( true );
else if ( cmd == "showonradar" )SetShowOnRadar( true );
else if ( cmd == "shownametags" )SetShowNametags( true );
else if ( cmd == "perfecthandling" )SetPerfectHandling( true );
else if ( cmd == "flyingcars" )SetFlyingCars( true );
else return 0;
Message( "Admin " + player.Name + " has enabled "+ cmd +"." );

}
else if ( text == "off" ) {
if ( cmd == "driveby" )SetDrivebyEnabled( false );
else if ( cmd == "driveonwater" )SetDriveOnWater( false );
else if ( cmd == "fastswitch" )SetFastSwitch( false );
else if ( cmd == "jumpswitch" )SetJumpSwitch( false );
else if ( cmd == "taxiboostjump" )SetTaxiBoostJump( false );
else if ( cmd == "stuntbike" )SetStuntBike( false );
else if ( cmd == "deathmessages" )SetDeathMessages( false );
else if ( cmd == "joinmessages" )SetJoinMessages( false );
else if ( cmd == "friendlyfire" )SetFriendlyFire( false);
else if ( cmd == "shootinair" )SetShootInAir( false );
else if ( cmd == "syncframelimiter" )SetSyncFrameLimiter( false );
else if ( cmd == "framelimiter" )SetFrameLimiter( false );
else if ( cmd == "showonradar" )SetShowOnRadar( false );
else if ( cmd == "shownametags" )SetShowNametags( false );
else if ( cmd == "perfecthandling" )SetPerfectHandling( false );
else if ( cmd == "flyingcars" )SetFlyingCars( false );
else return 0;
Message( "Admin " + player.Name + " has disabled "+ cmd +"." );
}
else if ( IsNum( text ) ) {
if ( cmd == "maxplayers" )SetMaxPlayers( text.tointeger() );
else if ( cmd == "gravity" )SetGravity( text.tointeger() );
else if ( cmd == "gamespeed" )SetGamespeed( text.tointeger() );
else if ( cmd == "waterlevel" )SetWaterLevel( text.tointeger() );
else if ( cmd == "maxheight" )SetMaxHeight( text.tointeger() );
else if ( cmd == "hour" )SetHour( text.tointeger() );
else if ( cmd == "minute" )SetMinute( text.tointeger() );
else if ( cmd == "timerate" )SetTimeRate( text.tointeger() );
else if ( cmd == "Weather" )SetWeather( text.tointeger() );
else return 0;
Message( "Admin " + player.Name + " has set "+ cmd +" to "+ text.tointeger() +"" );
}
else if (( text != "off" )||( text != "on" )) {
if ( cmd == "servername" )SetServerName( text );
else if ( cmd == "gamemodename" )SetGameModeName( text );
else if ( cmd == "serverpassword" )SetPassword( text );
else return 0;
Message( "Admin " + player.Name + " has set "+ cmd +" to "+ text +"" );
}
}
[/spoiler]
I may be a slow walker but I am always walking.

Sebastian

#25
Quote from: Doom_Killer on Jul 23, 2015, 03:26 PMLol wtf?! That means I should credit Gudio for making the first multigame-mode server as well? rofl.
Of course not
Also developers of Littlewhitey's server should not give credits to the first dev of the first DM server.
Even creators of vehicles should give credits to the first human who created one.

@Skirmant 's words: Everybody should give credits to the guy who first discovered the fire, too.

Ksna

Thanks for your feedback Doom ,it was just thanks not credits,  seby its impossible lol.
The first thing what player learns after looking the code is removing credits.

MatheuS

function onPlayerSpawn( player )
{
if ( stats[ player.ID ].wantedlevel < 0) {
player.Pos = Vector( 392.96, -506.26, 9.39 );
stats[ player.ID ].jailtime = GetTickCount();
    stats[ player.ID ].times = true;
MessagePlayer("You have been Jailed", player );
}

}

if ( stats[ player.ID ].wantedlevel < 0) { LOL?
if ( stats[ player.ID ].wantedlevel > 0) { Oh Yeaah ::)

Nice job. ;)
if( !sucess ) tryAgain();
Thanks to the VCMP community. It was the happiest period of my life.

Ksna

lol Matheus dont mess with that XD if wantedlevel is negative then it means he is arrested player and if level is -1 he is banned player
Read my topic again XD

MatheuS

Quote from: Ksna on Jul 23, 2015, 04:22 PMlol Matheus dont mess with that XD if wantedlevel is negative then it means he is arrested player and if level is -1 he is banned player
Read my topic again XD

had not seen it ::), Sorry :-*
if( !sucess ) tryAgain();
Thanks to the VCMP community. It was the happiest period of my life.