Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 05-20-2012, 10:48 AM
greggiles greggiles is offline
Registered User
greggiles's Avatar
Join Date: Sep 2007
Posts: 149
greggiles has a spectacular aura about
Custom movement issue.

I have made a simple custom movement system. The movement is a 'arcade' type movement. You can move in all four directions, but the player can only be seen from a side view.

A issue I am having is that I am not sure how to make it so the player can run diangle also. (Ex-Move up and right at the same time)

And if someone could throw in a line of tile detection that'd be great!

PHP Code:
//#CLIENTSIDE
function onCreated()
{
player.zoom 1;
disabledefmovement();
}

function 
onKeyPressed()
{
 if (
player.clientr.canmove == 1)
 {
 if (!
this.moving){
 
this.moving true;
 
onTimeOut();
  }
 }
}

function 
onTimeOut()
{
if (
player.clientr.canmove == 1)
{
 if (
keydown(3))
 {
 
player.+=0.8;
 
player.dir 3;


 
setAni("walk"NULL);
 
 
setTimer(0.2);
} else if (
keydown(1)){
   
player.-=0.8;
 
player.dir 1;
  
setAni("walk"NULL);

 
  
setTimer(0.2);
  
  } else if (
keydown(0)){
   
player.-=0.5;
  
setAni("walk"NULL);
 
setTimer(0.2);
 
  } else if (
keydown(2)){
   
player.+=0.5;
  
setAni("walk"NULL);
 
setTimer(0.2); 
  
} else {
 
this.moving false;
}
if (
this.moving) {
setTimer(0.05);
} else {

 
setAni("idle"NULL);
 } 
}

Reply With Quote
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 02:24 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.