DM - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: DM (
/showthread.php?tid=82134)
DM -
RenisiL - 16.06.2009
Hello, how to do that if i am in dm i can't tele anywhere??
Re: DM -
dice7 - 16.06.2009
put this on top of your OnPlayerCommandText
pawn Код:
If (IsPlayerInDM == 1)//you'll need to make this yourself
{
SendClientMessage();
}
Re: DM -
RenisiL - 16.06.2009
please make all
Re: DM -
mave_man - 16.06.2009
Do it yourself..
Re: DM -
yezizhu - 16.06.2009
pawn Код:
stock dm_SetPlayerPos(playerid,Float:x,Float:y,Float:z){
if(pInDM[playerid]){
return SetPlayerPos(playerid,x,y,z);
}
return false;
}
#define SetPlayerPos dm_SetPlayerPos
Add at the top of your script.