23.08.2010, 21:04
Hey there,
I was just wondering, is there some kind of function (or even possible) to set a specific time in a NPC recording?
Example a video on *******,
the vid is 0:00 to 4:38 mins.
is it possible to like 'click' to a certain time in a NPC recording?
So if a bus stops at LS airport at 3:39, i would do
Just a thought and opinion?
I was just wondering, is there some kind of function (or even possible) to set a specific time in a NPC recording?
Example a video on *******,
the vid is 0:00 to 4:38 mins.
is it possible to like 'click' to a certain time in a NPC recording?
pawn Code:
SetNpcTime(npcid, time);
pawn Code:
CMD:setnpctime(playerid, params[])
{
new npcid, time;
if(sscanf(params, "dd", npcid, time))
{
return stuff;
}
SetNpcTime(npcid, time);
return 1;
}