Any ideas why system doesn't work?
#7

I can't tell from your post if it worked or not, but

Try to change the following code order:
Код:
    SetPlayerHealth(playerid,0.0);
    CreateExplosion(Float:x,Float:y,Float:z,0,6.0);
to (also remove the Float tags)
Код:
    CreateExplosion(x,y,z,0,6.0);
    SetPlayerHealth(playerid,0.0);
Remove them here aswell:

Код:
GetPlayerPos(playerid,Float:x,Float:y,Float:z);
to:
Код:
GetPlayerPos(playerid,x,y,z);
Reply


Messages In This Thread
Any ideas why system doesn't work? - by henkas - 16.03.2017, 18:54
Re: Any ideas why system doesn't work? - by Toroi - 16.03.2017, 19:08
Re: Any ideas why system doesn't work? - by henkas - 16.03.2017, 19:11
Re: Any ideas why system doesn't work? - by henkas - 16.03.2017, 19:25
Re: Any ideas why system doesn't work? - by Toroi - 16.03.2017, 19:40
Re: Any ideas why system doesn't work? - by Pokemon64 - 16.03.2017, 19:48
Re: Any ideas why system doesn't work? - by Toroi - 16.03.2017, 19:54
Re: Any ideas why system doesn't work? - by Pokemon64 - 16.03.2017, 20:05
Re: Any ideas why system doesn't work? - by henkas - 16.03.2017, 21:18

Forum Jump:


Users browsing this thread: 2 Guest(s)