SA-MP Forums Archive
[Help] Entry/Exit in Dialog! - 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: [Help] Entry/Exit in Dialog! (/showthread.php?tid=486392)



[Help] Entry/Exit in Dialog! - ADZAA - 08.01.2014

Hi,I made Entry/Exit for bank on my server,and when I stay on pickup,all works fine but when I click on "Entry" button nothing happens.Please help me.Thanks!



Code:

Code:
if(dialogid == DIALOG_BU)//banka Ulaz
 {
     if(response)
     {
       SetPlayerPos(playerid, 2305.1277,-16.2025,26.7422);
    PostaviInt(playerid,0);
    SetPlayerFacingAngle(playerid, 276.8116);
    PostaviVW(playerid,0);

     }
     else
     {

     }
    }
    if(dialogid == DIALOG_BI)//banka izlaz
 {
     if(response)
     {

       SetPlayerPos(playerid, 1469.4045,-1009.9212,26.8438);
    PostaviInt(playerid,0);
    SetPlayerFacingAngle(playerid, 349.9405);
    PostaviVW(playerid,0);

     }
     else
     {

     }
  }



Re: [Help] Entry/Exit in Dialog! - ADZAA - 08.01.2014

Solved,LOCK!