How to go to drive on water?
#10

Here, this code works:
You might want to add an extra check to see if the player is not in the quary (since that location is below waterlevel.

pawn Код:
#include <a_samp>
new WalkWaterObject[MAX_PLAYERS];
new bool:WalkingOnWater[MAX_PLAYERS];

public OnPlayerCommandText(playerid, cmdtext[])
{
        if (!strcmp(cmdtext, "/walkwater", true))
        {
                if(WalkingOnWater[playerid] == false)
                {
                    WalkWaterObject[playerid] = CreatePlayerObject(playerid, 8661, 0.000000, 0.000000, 0.000000, 178.400314,0.000000,0.000000);
                    WalkingOnWater[playerid] = true;
                    SendClientMessage(playerid, 0x00FF00AA, "Walking on water enabled");
                    return 1;
                }
                else
                {
                    DestroyPlayerObject(playerid, WalkWaterObject[playerid]);
                    WalkingOnWater[playerid] = false;
                    SendClientMessage(playerid, 0xFF0000AA, "Walking on water disabled");
                }
                return 1;
        }
        return 0;
}

public OnPlayerDisconnect(playerid, reason)
{
    if(WalkingOnWater[playerid] == true)
    {
        DestroyPlayerObject(playerid, WalkWaterObject[playerid]);
        WalkingOnWater[playerid] = false;

    }
    return 1;
}

public OnPlayerUpdate(playerid)
{
    if(WalkingOnWater[playerid] == true)
    {
        new Float:pos[3];
        GetPlayerPos(playerid, pos[0], pos[1], pos[2]);
        if(pos[2] < 2)
        {  
            SetPlayerObjectPos(playerid, WalkWaterObject[playerid], pos[0], pos[1], 0.2);
        }
    }
    return 1;
}
Reply


Messages In This Thread
How to go to drive on water? - by _Application_ - 02.12.2014, 22:17
Re: How to go to drive on water? - by Schneider - 02.12.2014, 22:37
Re: How to go to drive on water? - by Abagail - 02.12.2014, 22:40
Re: How to go to drive on water? - by Luis- - 02.12.2014, 22:43
Re: How to go to drive on water? - by Abagail - 02.12.2014, 22:50
Re: How to go to drive on water? - by gtakillerIV - 02.12.2014, 22:54
Re: How to go to drive on water? - by Abagail - 02.12.2014, 23:09
Re: How to go to drive on water? - by _Application_ - 03.12.2014, 10:44
Re: How to go to drive on water? - by Schneider - 03.12.2014, 14:42
Re: How to go to drive on water? - by Schneider - 03.12.2014, 15:03

Forum Jump:


Users browsing this thread: 1 Guest(s)