English Hats Mod icon

58 comments
20.06.10 12:57:39 pm
like 33 like it!
4 kb, 3,049 Downloads
RyceR
User
Offline Off
===> Hats Mod <===
> Small mod by RyceR
Here is commands:
!phoenix
!corner
!helmet
!spikes
!tyrans
!nohat

Have Fun
imageimageimage
edited 1×, last 27.09.10 08:30:14 pm
ok This file has been reviewed and approved by Yates (04.12.15 02:15:57 pm)

Comments

58 comments
Goto Page
To the start Previous 1 2 3 Next To the start

Log in!

You need to log in to be able to write comments!Log in
18.09.10 10:04:15 am
like I like it!
Up
PbBOKAN
User
Offline Off
Idea 4/4
rare 0/1
bugs 1/1
gfx-sfx 2/2
commands 1/2
Could add/fix:
F2/F3/F4 - choose whitch hat by clicking
No see mesagges after typing e.g !corner
RATING:
(4+0+1+2+1):2 = 4
but i think it could get +1 couse i use it
soo = 4.5
14.09.10 06:23:08 pm
like I like it!
Up
Leiche
Moderator
Offline Off
clearly needs more hats.
14.09.10 06:12:14 pm
like I like it!
Up
maPmaKer
User
Offline Off
Lol really good. Next time add more hats or make a "Hats Mod V2"
14.09.10 02:23:08 pm
like I like it!
Up
PbBOKAN
User
Offline Off
does it remove hat on command !nohat ?
It seems to have a problem somewhere at:


if (txt=="!nohat") then
     freeimage(id)
     id1=image("gfx/hats/nohat.bmp",1,1,200+id)
     imagescale(id1,1,1)
     imageblend(id1,0)
     imagealpha(id1,1.0)
          end

Like it doesnt remove pls help.
12.09.10 07:48:47 pm
like I like it!
Up
Xej
User
Offline Off
Pretty Nice and Simple Script, i like it
11.09.10 01:22:46 am
like I like it!
Up
WolfyCrisis
User
Offline Off
this script pretty good! :3
28.07.10 11:13:04 am
Up
Slayer
User
Offline Off
You know you can edit this by doing some edit I edited it but its kinda scraby ill be posting it soon
18.07.10 07:57:42 pm
Up
RyceR
User
Offline Off
Thx all new version incaming
18.07.10 07:42:11 pm
like I like it!
Up
awcmon
User
Offline Off
Nice.
18.07.10 02:18:30 pm
Up
HaRe
User
Offline Off
Ive seen an Menu Like this in an server

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
menunf = 1 -- Set 0 if you dont want the script

addhook("serveraction","hatmod_action")
function hatmod_action(id,b)
     if (b==1 and menunf==1) then
               menu(id,"Hat Mod,Helmet,Spikes,Phoenix,Wings,Tyrans,Remove Hat")
     elseif (b==1 and menunf==0) then
          msg2(id,"The script isnt on")
          end
     end
end

addhook("menu","hatmod_menu")
function hatmod_menu(id,menu,sel)
     if menu=="Hat Mod" then
          if sel==1 then
                    freeimage(id) 
                    id1=image("gfx/hats/helmet.bmp",1,1,200+id)
                    imagescale(id1,1,1) 
                    imageblend(id1,0) 
                    imagealpha(id1,1.0)
               msg2(id,"Youve got an Helmet")
          elseif sel==2 then
                    freeimage(id) 
                    id1=image("gfx/hats/spikes.png",1,1,200+id) 
                    imagescale(id1,1,1) 
                    imageblend(id1,0) 
                    imagealpha(id1,1.0)
               msg2(id,"Youve got Spikes")
          elseif sel==3 then
                    freeimage(id) 
                    id1=image("gfx/hats/phoenix.png",1,1,200+id) 
                    imagescale(id1,1,1) 
                    imageblend(id1,0) 
                    imagealpha(id1,1.0)
               msg2(id,"Youve got an Phoenix")
          elseif sel==4 then
                    freeimage(id) 
                    id1=image("gfx/hats/wing5.png",1,1,200+id) 
                    imagescale(id1,1,1) 
                    imageblend(id1,0) 
                    imagealpha(id1,1.0)
               msg2(id,"Youve got Wings")
          elseif sel==5 then
                    freeimage(id) 
                    id1=image("gfx/hats/tyrans.png",1,1,200+id) 
                    imagescale(id1,1,1) 
                    imageblend(id1,0) 
                    imagealpha(id1,1.0)
               msg2(id,"Youve got Tyrans")
          elseif sel==6 then
                    freeimage(id) 
               msg2(id,"Youve removed the hat")
          end
     end
end

addhook("die","hatmod_die")
function hatmod_die(id)
     freeimage(id)
     msg2(id,"Youve lost your hat")
end
edited 1×, last 18.07.10 02:34:37 pm
27.06.10 09:16:26 am
like I like it!
Up
Anti
User
Offline Off
-.-" Very low...
27.06.10 06:21:38 am
like I like it!
Up
Cliffe_Snake
User
Offline Off
K-tronic, I make scripts more difficult than this and I don't want to spend my time on the jar.
27.06.10 05:18:41 am
like I like it!
Up
K-tronic
User
Offline Off
Cliffe_Snake has written:
MORE HATS PLEASE!!!

make them yourself and edit the luascript (it should be easy, just change the text which should be said for a hat and the filedirectory of it)
nice lua, but I think some hats aren't made by yourself
27.06.10 04:26:06 am
like I like it!
Up
Cliffe_Snake
User
Offline Off
MORE HATS PLEASE!!!
21.06.10 11:25:20 am
Up
HaRe
User
Offline Off
This script was in cs 1.6 first

But cool to see it in cs2d
20.06.10 03:52:38 pm
like I like it!
Up
DragonAwper
User
Offline Off
it's awesome
20.06.10 02:01:38 pm
like I like it!
Up
SiP_
User
Offline Off
cool
20.06.10 01:02:20 pm
like I like it!
Up
palomino
User
Offline Off
It is good
To the start Previous 1 2 3 Next To the start