SA-MP Forums Archive
Fix Flip Kill commands - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Fix Flip Kill commands (/showthread.php?tid=321177)



Fix Flip Kill commands - SuNL1GhT - 26.02.2012

Hello,i got another problem again.
After I finished my script,there's should be no problem.
After I compile it,it shows 0KB on the .amx

These are my code:
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/kill", cmdtext, true, 10) == 0)
	{
		SetPlayerHealth(playerid, 0);
		SendClientMessage(playerid, 0xFFFFFFFF, "INFO:You have commited suicide.");
		return 1;
	}
	if (strcmp("/fix", cmdtext, true, 10) == 0)
	{
		{
		if(IsPlayerInAnyVehicle(playerid) return SendClientMessage(playerid, 0xFFFFFFFF, "ERROR:You must be in a vehicle!");
		}
		GetPlayerVehicleID(playerid);
		SetVehicleHealth(vehicleid, 1000);
		SendClientMessage(playerid, 0xFFFFFFFF, "INFO:Wow,the car is pretty shit,nice fixing!");
	}
	if (strcmp("/flip", cmdtext, true, 10) == 0)
	{
		{
		if(IsPlayerInAnyVehicle(playerid) return SendClientMessage(playerid, 0xFFFFFFFF, "ERROR:You must be in a vehicle!");
	    }
		new currentveh;
        new Float:angle;
        currentveh = GetPlayerVehicleID(playerid);
        GetVehicleZAngle(currentveh, angle);
        SetVehicleZAngle(currentveh, angle);
        SendClientMessage(playerid, 0xFFFFFFFF, "Your vehicle has been flipped.");
        return 1;
    }
	return 0;
}
And the compiler:
Код:
Current directory: C:\Documents and Settings\Daneil\Desktop\Script for SAMP
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase

================ READY ================
Note:Scripted by using Notepad++


Re: Fix Flip Kill commands - 2KY - 26.02.2012

Do you use the following exec?

Код:
npp_save
cd $(CURRENT_DIRECTORY)
"DIRECTORY/pawncc.exe" "$(FILE_NAME)" -; -(



Re: Fix Flip Kill commands - SuNL1GhT - 26.02.2012

Yes,I did.
Код:
npp_save
cd $(CURRENT_DIRECTORY)
"C:\Documents and Settings\Daneil\Desktop\ROFLMAO\pawno\pawncc.exe" "$(FILE_NAME)" -; -(



Re: Fix Flip Kill commands - Mario™ - 26.02.2012

Try To Compile It Using Pawno Because it Sometimes Happens TO My script Also


Re: Fix Flip Kill commands - SuNL1GhT - 26.02.2012

I've tried to compile for many times but it still on 0 KiloByte(KB)