
12-29-2007, 06:31 PM
|
|
Billy Allan
|
 |
Join Date: Apr 2007
Posts: 804
|
|
Quote:
Originally Posted by Angel_Light
PHP Code:
function onKeyPressed( code, key)
{
switch ( temp.code)
{
case "65": //a
Grab();
break;
}
}
function Grab()
{
frontPosition = { player.x + 1.5 + vecx(player.dir) * 2, player.y + 1.5 + vecy(player.dir) * 2};
canGrab = ( testplayer(frontPosition[0], frontPosition[1]) || testnpc(frontPosition[0], frontPosition[1]));
if ( canGrab)
triggerAction(frontPosition[0], frontPosition[1], "Grabbed", player.account, player.guild);
}
Here what I use, forgot where I got it though. :/
|
would that be for the system script? or the item script? |
__________________
I am the devil, I am here to do to devils work.
|
|
|
|