
09-09-2008, 06:21 PM
|
|
Deas
|
 |
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
|
|
Quote:
Originally Posted by alexandralove
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(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:
PHP Code:
//#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);
}
}
}
|
fixed  |
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK! if you are going to rep me, don't be an idiot, leave your name!I got nothing but love for you 
|
|
|
|