Sziasztok
keszitettem egy dialogos teleportot.
keszitesi ido 5 perc
Relem tetszeni fog .
[/#include <a_samp>
#define DIALOG_RM 121
#if defined FILTERSCRIPT
CMD:teles(playerid,params[])
{
ShowPlayerDialog(playerid,DIALOG_RM,DIALOG_STYLE_LIST,\"Teleportok\",\"LS\\n sf\\n lv\\n lsair\\n raktar\\n KACC depo\\n KACC raktar\\n Los Antos Dokk\\n banya\\n doherty\\n El corona depo\\n Las paysadas\\n LVA .\",\"Teleportálok\",\"Megse\");
return 1;
}
return 0;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if ( dialogid == DIALOG_RM )
{
if( !response )
{
if( listitem == 0)
{
SetPlayerPos(playerid,2485.8440,-1669.4956,13.3359);
}
if( listitem == 1)
{
SetPlayerPos(playerid,1972.8893,290.9427,35.1719);
}
if( listitem == 2)
{
SetPlayerPos(playerid,2153.1775,1671.9844,10.6875);
}
if( listitem == 3)
{
SetPlayerPos(playerid,1962.4187,-2501.7600,13.5391);
}
if( listitem == 4)
{
SetPlayerPos(playerid,1052.0804,2110.5264,10.8203);
}
if( listitem == 5)
{
SetPlayerPos(playerid,2539.2441,2807.7554,10.8203);
}
if( listitem == 6)
{
SetPlayerPos(playerid,2806.1685,2580.4419,10.8203);
}
if( listitem == 7)
{
SetPlayerPos(playerid,2592.3862,-2206.1101,17.3572);
}
if( listitem == 8)
{
SetPlayerPos(playerid,332.1386,899.7029,24.7752);
}
if( listitem == 9)
{
SetPlayerPos(playerid,2135.3462,-247.5000,35.9922);
}
if( listitem == 10)
{
SetPlayerPos(playerid,1766.8333,-2040.7000,13.5272);
}
if( listitem == 11)
{
SetPlayerPos(playerid,545.6445,2594.0000,53.5156);
}
if( listitem == 12)
{
SetPlayerPos(playerid,1457.0000,975.8350,10.8203);
}
#endif]
Így érne valamit:
#include <a_samp>
#include <zcmd>
#define DIALOG_RM 121
CMD:teles(playerid,params[])
{
ShowPlayerDialog(playerid,DIALOG_RM,DIALOG_STYLE_LIST,\"Teleportok\",\"LS\\n sf\\n lv\\n lsair\\n raktar\\n KACC depo\\n KACC raktar\\n Los Antos Dokk\\n banya\\n doherty\\n El corona depo\\n Las paysadas\\n LVA .\",\"Teleportálok\",\"Megse\");
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_RM)
{
if(!response)
{
if( listitem == 0)
{
SetPlayerPos(playerid,2485.8440,-1669.4956,13.3359);
}
if( listitem == 1)
{
SetPlayerPos(playerid,1972.8893,290.9427,35.1719);
}
if( listitem == 2)
{
SetPlayerPos(playerid,2153.1775,1671.9844,10.6875);
}
if( listitem == 3)
{
SetPlayerPos(playerid,1962.4187,-2501.7600,13.5391);
}
if( listitem == 4)
{
SetPlayerPos(playerid,1052.0804,2110.5264,10.8203);
}
if( listitem == 5)
{
SetPlayerPos(playerid,2539.2441,2807.7554,10.8203);
}
if( listitem == 6)
{
SetPlayerPos(playerid,2806.1685,2580.4419,10.8203);
}
if( listitem == 7)
{
SetPlayerPos(playerid,2592.3862,-2206.1101,17.3572);
}
if( listitem == 8)
{
SetPlayerPos(playerid,332.1386,899.7029,24.7752);
}
if( listitem == 9)
{
SetPlayerPos(playerid,2135.3462,-247.5000,35.9922);
}
if( listitem == 10)
{
SetPlayerPos(playerid,1766.8333,-2040.7000,13.5272);
}
if( listitem == 11)
{
SetPlayerPos(playerid,545.6445,2594.0000,53.5156);
}
if( listitem == 12)
{
SetPlayerPos(playerid,1457.0000,975.8350,10.8203);
}
}
return 1;
}
return 0;
}