View Single Post
  #18  
Old 09-09-2008, 06:18 PM
Soala Soala is offline
Ideas on Fire
Soala's Avatar
Join Date: Jun 2007
Location: In my head
Posts: 3,208
Soala is a jewel in the roughSoala is a jewel in the rough
Cool

Emotes Script up for grab if anyone want, nothing interessting but easy to understand Use it if you feel like you need it.

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


RESULT EXEMPLE:

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