Graal Forums  

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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 02-04-2012, 07:09 AM
Gunderak Gunderak is offline
Coder
Gunderak's Avatar
Join Date: Jun 2011
Location: Australia
Posts: 795
Gunderak is on a distinguished road
New Movement System

Basically it will allow you to navigate around with only your mouse.
Only problem is I have no idea how to do proper wall checks and make the player slide if they walk diagonally following a wall, anyway here is my code so far.
PHP Code:
//#CLIENTSIDE
function onCreated(){
  
onTimeout();
}
function 
onTimeout(){
  
temp.deltax mousex player.x;
  
temp.deltay mousey player.y;
  
temp.angle getangle(deltaxdeltay);
  if(
leftmousebutton && !onwall(player.cos(angle)*0.6player.sin(angle)*0.6)){
    
player.+= cos(angle)*0.6;
    
player.-= sin(angle)*0.6;
    
player.dir getdir(mousex player.xmousey player.y);
    
setani("walk"null);
  }
  
settimer(0.05);
}
function 
onMouseUp(b){
  if(
== "left" && player.ani == "walk"){
    
setani("idle"null);
  }

Does anyone have any idea's for a good wall check system that could be incorporated with this?
__________________

Gund for president.

Remote PM {P*}x (Graal813044) from eraiphone -> Stefan: I hav 1 qustion
*Gunderak: he hav 1
*Gunderak: qustion
Reply With Quote
  #2  
Old 02-04-2012, 07:35 AM
callimuc callimuc is offline
callimuc's Avatar
Join Date: Nov 2010
Location: Germany
Posts: 1,015
callimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to behold
Quote:
Originally Posted by Gunderak View Post
Does anyone have any idea's for a good wall check system that could be incorporated with this?
This one seemd to be the easiest at least in the code gallery. Might be helpfull
http://forums.graalonline.com/forums...ad.php?t=78043
__________________
MEEP!
Reply With Quote
  #3  
Old 02-04-2012, 10:39 AM
Gunderak Gunderak is offline
Coder
Gunderak's Avatar
Join Date: Jun 2011
Location: Australia
Posts: 795
Gunderak is on a distinguished road
Thanks for the link, I'll check it out when I'm home.
__________________

Gund for president.

Remote PM {P*}x (Graal813044) from eraiphone -> Stefan: I hav 1 qustion
*Gunderak: he hav 1
*Gunderak: qustion
Reply With Quote
Reply


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 01:11 AM.


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