View Single Post
  #19  
Old 09-09-2008, 06:21 PM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
Quote:
Originally Posted by alexandralove View Post
Emotes Script up for grab if anyone want, nothing interessting but easy to understand Use it if you feel like you need it.

PHP Code:
//#CLIENTSIDE
function onKeypressed(){
  
hideimg(1);
  if (
keydown2(17true)&&keydown2(keycode(KEY YOU WANT HERE for exemple 1), true)) {
    
showimg1"yourimage.png"player.x+2player.y-5);
    
changeimgvis11);
    }
else {
  
hideimg(1);
if (
keydown2(17true)&&keydown2(keycode(KEY YOU WANT HERE for exemple 2), true)) {
    
showimg1"anotherimage.png"player.x+2player.y-5);
    
changeimgvis11);
  }
 }

RESULT EXEMPLE:
PHP Code:

//#CLIENTSIDE
function onKeypressed(){
  
hideimg(1);
  if (
keydown2(17true)&&keydown2(keycode(1), true)) {
    
showimg1"emotions_noob.png"player.x+2player.y-5);
    
changeimgvis11);
    }
else {
  
hideimg(1);
if (
keydown2(17true)&&keydown2(keycode(2), true)) {
    
showimg1"emotions_yay.png"player.x+2player.y-5);
    
changeimgvis11);
  }
 }

fixed
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote