03.05.2017, 10:03
Hi,
I was trying to solve it out by defining them or whatever, but problem is still here! Used enumerations
Whenever i use command /set dialog will appear with some packs like this, and i have to choose this pack!
- Whenever i use this pack when dialog appear i am teleported to this location! What's the problem ? I shouldn't be teleported but it does.+REP if helped
I was trying to solve it out by defining them or whatever, but problem is still here! Used enumerations
Whenever i use command /set dialog will appear with some packs like this, and i have to choose this pack!
Код:
if(dialogid == D_SET) { if (response) switch (listitem) { case 0: { PlayerInfo[ playerid ][ SET ] = 0; GiveSet(playerid, 0); SendClientMessage(playerid, -1, "You got this set"); } ShowPlayerDialog( playerid, D_SET, DIALOG_STYLE_LIST, "Set", "Standard Set", "Select", "Cancel" ); } } }
Код:
if(dialogid == D_TELE) { if(response) { if(listitem == 0) { SetPlayerPos(playerid, 2048.1663,-2261.8228,18.5524); SetPlayerFacingAngle(playerid, 147.1641); SetPlayerInterior(playerid,0); SetCameraBehindPlayer(playerid); SendClientMessage(playerid, -1, "Teleported"); } } }