View Single Post
  #10  
Old 05-03-2008, 03:49 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Quote:
Originally Posted by Robin View Post
Stop trying to increase your post count, it has no bearing on your life.
I have to agree..




Anyways, on topic..

Making your own movement system, or fighting system would solve your problem;o

Here's an easy script that shows you how you can change the sword ani
PHP Code:
//#CLIENTSIDE
function onCreated() {
  
setTimer(0.05);
}

function 
onTimeout() {
  if (
player.ani == "sword") {
    
setani("punch"0);
    
// Change 'punch' into gani you want to display instead of sword
  
}
  
setTimer(0.05);

But to disable classic swords, probably disableweapons();* or disabledefmovement();

But using either of this makes it that you have to make a system to.. enable weapons or movement in your way being..
(* dunno about this one, can't remember it from the top out of my head)
__________________
Reply With Quote