Jump to content
  • 0

pomoc OnPlayerDialogResponse


Lujkano

Dotaz

Cc.

 

Urobil som si dialog ale na OnPlayerDialogResponse my stale hadze 5 chyb.

Neviem co s tym je, tu je kod:

 

new Float:x,Float:y,Float:z;
if(dialogid==1 && response==1)
{
switch(listitem)
{
	case 0:
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(432,x-3.0,y,z,0.0,1,1,300);
	}
	case 1:
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(407,x-3.0,y,z,0.0,1,3,300);
	}
	case 2;
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(411,x-3.0,y,z,0.0,1,0,300);
	}
	case 3;
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(451,x-3.0,y,z,0.0,0,1,300);
	}
	case 4;
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(406,x-3.0,y,z,0.0,1,1,300);
	}
}
}

Link to comment
Share on other sites

6 odpovědí na tuto otázku

Recommended Posts

  • 0
new Float:x,Float:y,Float:z;

if(dialogid==1 && response==1)

{

switch(listitem)

{

case 0:

{

GetPlayerPos(playerid,x,y,z);

CreateVehicle(432,x-3.0,y,z,0.0,1,1,300);

}

case 1:

{

GetPlayerPos(playerid,x,y,z);

CreateVehicle(407,x-3.0,y,z,0.0,1,3,300);

}

case 2;

{

GetPlayerPos(playerid,x,y,z);

CreateVehicle(411,x-3.0,y,z,0.0,1,0,300);

}

case 3;

{

GetPlayerPos(playerid,x,y,z);

CreateVehicle(451,x-3.0,y,z,0.0,0,1,300);

}

case 4;

{

GetPlayerPos(playerid,x,y,z);

CreateVehicle(406,x-3.0,y,z,0.0,1,1,300);

}

}

}

 

tam nemá byť ;

Link to comment
Share on other sites

  • 0

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
new Float:x,Float:y,Float:z;
if(dialogid==1 && response==1)
{
switch(listitem)
{
	case 0:
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(432,x-3.0,y,z,0.0,1,1,300);
	}
	case 1:
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(407,x-3.0,y,z,0.0,1,3,300);
	}
	case 2:
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(411,x-3.0,y,z,0.0,1,0,300);
	}
	case 3:
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(451,x-3.0,y,z,0.0,0,1,300);
	}
	case 4:
	{
		GetPlayerPos(playerid,x,y,z);
		CreateVehicle(406,x-3.0,y,z,0.0,1,1,300);
	}
}
}

 

Co je ne tom zle

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...