Detect a vehicle when falling at water off -
leon44 - 03.10.2017
Hi, I have a mini derby game in my gamemode and and is missing that when a player throws other player off to water he will be as spectator, I just need that to complete it, but the player needs to be detected when is underwater and after that detection he will be auto killed.
Re: Detect player when fell at water off -
DTV - 03.10.2017
I've never made a detection script for something like that but something that I think can help is checking their position as whenever they're in the water, their z coord will be 0.0 or lower.
Re: Detect player when fell at water off -
leon44 - 03.10.2017
Quote:
Originally Posted by DTV
I've never made a detection script for something like that but something that I think can help is checking their position as whenever they're in the water, their z coord will be 0.0 or lower.
|
I've thought in something like this but I don't know if it will work, check it out:
Code:
forward WaterDetection();
public WaterDetection()
{
new Float:Z;
for(new i; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i)) continue;
GetPlayerPos(i, Z, Z, Z);
if(Z < 0.0)
{
SetPlayerHealth(playerid, 0)
}
}
return 1;
}
What do you think? Any other better way to make it?
Re: Detect player when fell at water off -
Dignity - 03.10.2017
ColAndreas.
PHP Code:
CA_IsPlayerNearWater(playerid)
Re: Detect player when fell at water off -
leon44 - 03.10.2017
Quote:
Originally Posted by Dignity
ColAndreas.
PHP Code:
CA_IsPlayerNearWater(playerid)
|
But I don't wanna check if the player is near of water, I need it to check it when he's under water.
Re: Detect player when fell at water off -
Dignity - 03.10.2017
All water sources except the water behind the dam in Las Venturas are at 0.0, so you have to check below that.
The dam's water is at ~40.0, give or take a few.
Re: Detect player when fell at water off -
Swankeh - 03.10.2017
PHP Code:
public OnPlayerUpdate(playerid){
new Float: PosX, Float: PosY, Float: PosZ;
GetPlayerPos(playerid, PosX, PosY, PosZ);
if(PosZ < 0.0){
SendClientMessage(playerid, -1, "You are in the water");
//Your Code.
}
return 1;
}
Re: Detect player when fell at water off -
leon44 - 03.10.2017
Quote:
Originally Posted by Swankeh
PHP Code:
public OnPlayerUpdate(playerid){
new Float: PosX, Float: PosY, Float: PosZ;
GetPlayerPos(playerid, PosX, PosY, PosZ);
if(PosZ < 0.0){
SendClientMessage(playerid, -1, "You are in the water");
//Your Code.
}
return 1;
}
|
It worked good, thank you mate

+rep
By the way, just one more thing, can I create a timer to run the action I wanna take, for example: the player fell at the water off and after 5 seconds he will be automatically killed by setplayerhealth.
Re: Detect player when fell at water off -
Dignity - 03.10.2017
That won't work when you're behind the Las Venturas dam.
Re: Detect player when fell at water off -
leon44 - 03.10.2017
Quote:
Originally Posted by Dignity
That won't work when you're behind the Las Venturas dam.
|
So instead of 0.0 need I to put 40.0? Because I want this works in all waters.