Thread: Help Meh
View Single Post
  #1  
Old 07-25-2009, 11:43 PM
Mattehy Mattehy is offline
Developer
Mattehy's Avatar
Join Date: Jul 2009
Posts: 58
Mattehy is on a distinguished road
Question Help Meh

NPC Code:
//#CLIENTSIDE
function onKeyPressed(num1, key, num2)
{
if (key == "x")
{
ar = {player.x + (vecx(player.dir) * 2) + 1.1,
player.y + (vecy(player.dir) * 2) + 1.1};
triggeraction(ar[0], ar[1], "Sticked");
triggeraction(ar[0], ar[1], "DestroyBlock", 10);
setani("haven_staffstick",NULL);
freezeplayer(0.4);
sleep(0.4);
}
}


thats my current staffstick script how would i make it to send people to the osl? please help ;(
Reply With Quote