Still can't. Is anyone can't help me?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: dracc on Feb 24, 2019, 11:29 PMI fill everything correct! but can't.Quote from: Mr.nobOdy on Feb 24, 2019, 07:46 AMWhere could i find NICs MAC-Address
http://lmgtfy.com/?q=Windows+Show+MAC+address
Quote from: dracc on Feb 24, 2019, 12:07 AMTry searching for "port forward" instead of "port forword" next time.Where could i find NICs MAC-Address
"config name" could be whatever, probably "vcmp"
"MAC" should be your servers NICs MAC-address
"Local port" and "WAN port" should both be the port number of your servers configuration.
Also, please don't create multiple threads on the exact same topic.
Quote from: Mr.nobOdy on Feb 22, 2019, 03:11 PMI want like spawn loc systemQuote from: Mr.nobOdy on Feb 22, 2019, 11:03 AMAnd one this more i need Tommy that he spawn in the following location and my tommy skin code is:I want that the tommy spawn at location in screenshoot.
AddClass( 1, RGB( 102, 248, 255 ) ,169, Vector( -378.452, -580.217, 25.2321 ), 140.021, 17, 999 ,20, 999, 26, 999 );
and here is the screenshot link where i want to spawn tommy
https://imgur.com/a/Vli2AA0
Quote from: dracc on Feb 22, 2019, 01:01 PMIs this all the code you have?YEs this the code and u can see other codes which i add:function closederby() {
Or do you have more code somewhere that could help us solve your problem?
Message( ">> Derby cancelled!" );
derby = false;
derbystart = false;
derbycount = 0;
local plr;
for( local i=0; i <= GetMaxPlayers(); i++ ){
plr = FindPlayer( i );
if ( plr ) {
if( stats[ plr.ID ].derbyplayer ) {
stats[ plr.ID ].derbyplayer = false;
plr.IsFrozen = false;
plr.Pos = Vector( 496.26, -83.9443, 10.0302 );
}
}
}
}
function closerace() {
Message( ">> Race cancelled!" );
race = false;
racestart = false;
racecount = 0;
local plr;
for( local i=0; i <= GetMaxPlayers(); i++ ) {
plr = FindPlayer( i );
if ( plr ) {
if( stats[ plr.ID ].raceplayer ) {
stats[ plr.ID ].raceplayer = false;
plr.IsFrozen = false;
plr.Pos = Vector( 496.26, -83.9443, 10.0302 );
}
}
}
}
It sounds from your description of the problem like you already close a race if only one player is participating?
The code snippet on the other hand shows no such logic.
Also, what is wrong with your AddClass()? Is the location wrong?
Quote from: Mr.nobOdy on Feb 22, 2019, 11:03 AMAnd one this more i need Tommy that he spawn in the following location and my tommy skin code is:I want that the tommy spawn at location in screenshoot.
AddClass( 1, RGB( 102, 248, 255 ) ,169, Vector( -378.452, -580.217, 25.2321 ), 140.021, 17, 999 ,20, 999, 26, 999 );
and here is the screenshot link where i want to spawn tommy
https://imgur.com/a/Vli2AA0
Quote from: DarkRaZoR^ on Feb 21, 2019, 12:47 PMSolved!Quote from: Mr.nobOdy on Feb 17, 2019, 06:10 AMQuote from: DarkRaZoR^ on Feb 17, 2019, 04:04 AMYou're using a 32bit PC, right?no am using 64bit
i also do the samething on 64 bit but can't
You need to use the 64bit plugins if you're using a 64bit OS.
Quote from: DarkRaZoR^ on Feb 21, 2019, 12:50 PMThe onPlayerDeath callback is probably what you're looking for. Click here for more information.Thanks solved!