SA-MP Forums Archive
Need a Tutorial link for /enter - /exit CMD's - 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: Need a Tutorial link for /enter - /exit CMD's (/showthread.php?tid=262549)



Need a Tutorial link for /enter - /exit CMD's - Mr.Black - 18.06.2011

Can someone please give me a link of a Tutorial about how to make /enter and /exit CMD'S - or someone Tell me the Format of making it xD , Thank you


Re: Need a Tutorial link for /enter - /exit CMD's - cruising - 18.06.2011

Quote:
Originally Posted by Mr.Black
Посмотреть сообщение
Can someone please give me a link of a Tutorial about how to make /enter and /exit CMD'S - or someone Tell me the Format of making it xD , Thank you
pawn Код:
COMMAND:enter(playerid, params[])
{
    if(IsPlayerInRangeOfPoint(playerid, 2.0, coords))  //or PlayerToPoint i think
    SetPlayerPos(playerid, Your coords);
    return 1;
}



Re: Need a Tutorial link for /enter - /exit CMD's - Wesley221 - 18.06.2011

Gonna use ZCMD for this, change it to DCMD/STRCMP if you want to
pawn Код:
COMMAND:enter(playerid, cmdtext)
{
   if(IsPlayerInRangeOfPoint(playerid, range, x, y, z))
   {
      SetPlayerPos(playerid, x, y, z);
   }
   else if(IsPlayerInRangeOfPoint(playerid, range, x, y, z))
   {
      SetPlayerPos(playerid, x, y, z);
   }
   return 1;
}
Do the same with /exit

Edit: late again :$


Re: Need a Tutorial link for /enter - /exit CMD's - Mr.Black - 18.06.2011

what to do infront of IsPlayerRangeofpoint


Re: Need a Tutorial link for /enter - /exit CMD's - Wesley221 - 18.06.2011

Change the X, Y, Z to the X, Y, Z coцrdinates of the location where you want to go in. Then do like 5 range or something

https://sampwiki.blast.hk/wiki/IsPlayerInRangeOfPoint

This forum requires that you wait 120 seconds between sending messages. Try again in 12 seconds.


Re: Need a Tutorial link for /enter - /exit CMD's - Mr.Black - 18.06.2011

Can you give me an Example... Cause I Tried it and it didn't work


Re: Need a Tutorial link for /enter - /exit CMD's - cruising - 18.06.2011

Quote:
Originally Posted by Mr.Black
Посмотреть сообщение
Can you give me an Example... Cause I Tried it and it didn't work
pawn Код:
COMMAND:enter(playerid, params[])
{
    if(IsPlayerInRangeOfPoint(playerid, 2.0, -703.8918,435.5728,18.5800))
    SetPlayerPos(playerid, -708.0593,431.7911,31.5419);
    return 1;
}



Re: Need a Tutorial link for /enter - /exit CMD's - Wesley221 - 18.06.2011

pawn Код:
COMMAND:enter(playerid, cmdtext)
{
   if(IsPlayerInRangeOfPoint(playerid, 5, 1, 2, 3))
   {
      SetPlayerPos(playerid, 50, 60, 70);
   }
   else if(IsPlayerInRangeOfPoint(playerid, 5, 4, 5, 6))
   {
      SetPlayerPos(playerid, 80, 90, 100);
   }
   return 1;
}
Thats all.. Change the Coцrdinates to the ones you want

Edit: Oii, stop being faster as me all the time.. hehe


Re: Need a Tutorial link for /enter - /exit CMD's - Mr.Black - 18.06.2011

Quote:

// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT

#include <a_samp>

#if defined FILTERSCRIPT

public OnFilterScriptInit()
{
CreateDynamicObject(14777, 1957.3830566406, -2112.9575195313, 1002.0874023438, 0, 0, 0);
CreateDynamicObject(14777, 2064.2744140625, -2084.7614746094, 1114.4053955078, 0, 0, 0);
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}

public OnFilterScriptExit()
{
return 1;
}

#else

main()
{
print("\n----------------------------------");
print(" Blank Gamemode by your name here");
print("----------------------------------\n");
}

#endif

public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}

public OnGameModeExit()
{
return 1;
}

public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}

public OnPlayerConnect(playerid)
{
return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
return 1;
}

public OnPlayerSpawn(playerid)
{
return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
return 1;
}

public OnVehicleSpawn(vehicleid)
{
return 1;
}

public OnVehicleDeath(vehicleid, killerid)
{
return 1;
}

public OnPlayerText(playerid, text[])
{
return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
COMMAND:enter(playerid, params[])
{
if(IsPlayerInRangeOfPoint(playerid,3,1333.58093261 72,-1863.5708007813,14.039328575134))
SetPlayerPos(playerid,2064.185546875,-2071.7348632813,1115.2646484375);
return 1;
}
}

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
return 1;
}

public OnPlayerExitVehicle(playerid, vehicleid)
{
return 1;
}

public OnPlayerStateChange(playerid, newstate, oldstate)
{
return 1;
}

public OnPlayerEnterCheckpoint(playerid)
{
return 1;
}

public OnPlayerLeaveCheckpoint(playerid)
{
return 1;
}

public OnPlayerEnterRaceCheckpoint(playerid)
{
return 1;
}

public OnPlayerLeaveRaceCheckpoint(playerid)
{
return 1;
}

public OnRconCommand(cmd[])
{
return 1;
}

public OnPlayerRequestSpawn(playerid)
{
return 1;
}

public OnObjectMoved(objectid)
{
return 1;
}

public OnPlayerObjectMoved(playerid, objectid)
{
return 1;
}

public OnPlayerPickUpPickup(playerid, pickupid)
{
return 1;
}

public OnVehicleMod(playerid, vehicleid, componentid)
{
return 1;
}

public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
{
return 1;
}

public OnVehicleRespray(playerid, vehicleid, color1, color2)
{
return 1;
}

public OnPlayerSelectedMenuRow(playerid, row)
{
return 1;
}

public OnPlayerExitedMenu(playerid)
{
return 1;
}

public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
{
return 1;
}

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
return 1;
}

public OnRconLoginAttempt(ip[], password[], success)
{
return 1;
}

public OnPlayerUpdate(playerid)
{
return 1;
}

public OnPlayerStreamIn(playerid, forplayerid)
{
return 1;
}

public OnPlayerStreamOut(playerid, forplayerid)
{
return 1;
}

public OnVehicleStreamIn(vehicleid, forplayerid)
{
return 1;
}

public OnVehicleStreamOut(vehicleid, forplayerid)
{
return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
return 1;
}

public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
return 1;
}

Did that and look what happened


Quote:

E:\FreeDom's Role-Play\FreeDom's Role-Play\filterscripts\Barenter.pwn(93) : error 017: undefined symbol "enter"
E:\FreeDom's Role-Play\FreeDom's Role-Play\filterscripts\Barenter.pwn(93) : warning 203: symbol is never used: "COMMAND"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.




Re: Need a Tutorial link for /enter - /exit CMD's - Wesley221 - 18.06.2011

You need to include ZCMD for my command. Also, the command needs to be OUTSIDE of { } 's.

https://sampforum.blast.hk/showthread.php?tid=91354