Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Graphic Design (https://forums.graalonline.com/forums/forumdisplay.php?f=9)
-   -   New Smiley ''Good Game'' (https://forums.graalonline.com/forums/showthread.php?t=81707)

MagikMasterMind 09-07-2008 07:17 PM

New Smiley ''Good Game''
 
1 Attachment(s)
Hey guys, just made a smiley for Zone, but, I've been told to post it here, since it shall be allowed to take for any server.

Tell me how you like it!
Attachment 45803

Also, please let us know if you want it added on a certain server.

xAzerothx 09-07-2008 07:18 PM

I'd like to point out Graal players have no sportsmanship at all.

MagikMasterMind 09-07-2008 07:18 PM

A few players. But they will never change.

kia345 09-07-2008 07:19 PM

Quote:

Originally Posted by xAzerothx (Post 1421221)
I'd like to point out Graal players have no sportsmanship at all.

And Zone pushes that to a new extent.

DarkReaper0 09-07-2008 08:47 PM

If it were to be put on all servers what key would you map it to?

Or did you mean just a global default image file and we would have to script it in ourselves?

CharlieM 09-07-2008 08:52 PM

Whats ctrl g currently? map it to whatever key isnt being used and I like the design

MagikMasterMind 09-07-2008 08:53 PM

I think global default image file would be better, because worlds like UN, dosen't have any place for this. (Or I think/ I dont play UN)

Note:
CTRL+G is a a ''Grr'' face :mad:

CharlieM 09-07-2008 09:30 PM

Probably would work best for zone as it was intended though because zones really the only server based on game after game others are run and kill atleast I think I dont make my way around very much anymore

Rufus 09-07-2008 09:59 PM

2 Attachment(s)
You should probably use the text that is used on the other emotes, might fit in better. I've attached an example.

Elizabeth 09-07-2008 11:52 PM

Quote:

Originally Posted by kia345 (Post 1421223)
and zone pushes that to a new extent.

**** nub lamer

MagikMasterMind 09-08-2008 02:14 AM

Quote:

Originally Posted by Rufus (Post 1421278)
You should probably use the text that is used on the other emotes, might fit in better. I've attached an example.

Eww, animated.
IMO, Animated smileys(where text only is animated) are just a waste of time and does not fit for certain smileys.

I understand the letter part, it will help it fit for sure, but don't make the text ''GG'' animated...

Rufus 09-08-2008 04:37 PM

Quote:

Originally Posted by MagikMasterMind (Post 1421317)
Eww, animated.
IMO, Animated smileys(where text only is animated) are just a waste of time and does not fit for certain smileys.

I understand the letter part, it will help it fit for sure, but don't make the text ''GG'' animated...

I prefer animated smilies myself, and there is a couple of animated text smilies already, but fair play to you it's your smilie :p

WanDaMan 09-08-2008 06:56 PM

3 Attachment(s)
Very nice1 I made a few a long time ago :D

Chompy 09-08-2008 07:15 PM

Wan, those three are pretty nice :-)

CharlieM 09-08-2008 09:41 PM

Is the black heart supposed to be like goth or emo love?

kia345 09-08-2008 11:32 PM

Quote:

Originally Posted by MagikMasterMind (Post 1421317)
Eww, animated.
IMO, Animated smileys(where text only is animated) are just a waste of time and does not fit for certain smileys.

You mean you don't know how to make them, right? 2-3 frames is hardly time consuming.

And as for not fitting in, how does your smiley's font fit anything

WanDaMan 09-09-2008 12:27 AM

Quote:

Originally Posted by Chompy (Post 1421436)
Wan, those three are pretty nice :-)

Wow, thanks! :cool:

Quote:

Originally Posted by CharlieM (Post 1421459)
Is the black heart supposed to be like goth or emo love?

Oh yes! :D

Soala 09-09-2008 06:18 PM

Emotes Script up for grab if anyone want, nothing interessting but easy to understand :D 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);
}
}
}

Deas_Voice 09-09-2008 06:21 PM

Quote:

Originally Posted by alexandralove (Post 1421642)
Emotes Script up for grab if anyone want, nothing interessting but easy to understand :D 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 :cool:

Soala 09-09-2008 06:42 PM

Thanks lol, the button to do this dissepeared for me x_x

DrakilorP2P 09-09-2008 07:13 PM

Quote:

Originally Posted by alexandralove (Post 1421659)
Thanks lol, the button to do this dissepeared for me x_x

Real men type it out manually.

Soala 09-09-2008 07:34 PM

Quote:

Originally Posted by DrakilorP2P (Post 1421682)
Real men type it out manually.

Yah but I never really did type in a code this way on the forums yet XD
and I was too busy.

DarkReaper0 09-10-2008 12:16 AM

Quote:

Originally Posted by DrakilorP2P (Post 1421682)
Real men type it out manually.


Hell yes, "It's all about finger strength, Baby!"~SpongeBob.

Yes I did just quote SpongeBob.

DrakilorP2P 09-10-2008 09:48 AM

Quote:

Originally Posted by MagikMasterMind (Post 1421220)
Hey guys, just made a smiley for Zone, but, I've been told to post it here, since it shall be allowed to take for any server.

Tell me how you like it!
Attachment 45803

Also, please let us know if you want it added on a certain server.

I like it because the colours shine very ***ly.
There is no need for s******ing here.

CharlieM 09-10-2008 11:33 PM

I dont understand what half your posts mean because you have so many censorships in it but. I think you said something about you like it cause the colors shine and then theres no need for shining here?

DrakilorP2P 09-11-2008 12:28 AM

Quote:

Originally Posted by CharlieM (Post 1422152)
I dont understand what half your posts mean because you have so many censorships in it but. I think you said something about you like it cause the colors shine and then theres no need for shining here?

The colours shine in a nice way.
No need for snickering.

It doesn't quite express what I was going for as well as the original.


All times are GMT +2. The time now is 03:01 AM.

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