Forum

> > CS2D > Scripts > Lua Scripter [REQ]
Forums overviewCS2D overview Scripts overviewLog in to reply

English Lua Scripter [REQ]

8 replies
To the start Previous 1 Next To the start

old Lua Scripter [REQ]

R a G e
User Off Offline

Quote
Hello , I am looking for a average-good scripter to help me with a script with some things.

• Classes , 14 Classes , 7 per CT , 7 per TT.
• Special Abilities , drop AMMONITION at serval ammount of time , drop bandages at a serval ammount of time.
• Kill-Streaks.
• Badges , Ability to Advance in Function , from Private to Commandant.
• Ability to apply for Squads , 3 - Squads per team , ( CT and TT ).
• Special Glitches.
• and more.

basically this is the script in my mind.

Quote
"""basically there are 2 teams , you can select from ( one is CT , one is TT , with different names , USMC and Mercenars ) , you can select from 7 classes from evry team , so 14 classes , you can apply to Commander , or Alfa , Beta and Charlie team , you can apply to marksman ( at 40 kills with the awp ) and to apply commander of ABC ( alfa , beta , charlie ) when you've done a streak , streaks are simple , at 4 kills you get Supply Box , with ammo and bandage , 5 kills gives you a Strike , you get a map on screen and select a point ( if there's posible ) where to put the strike , in a 3-4 seconds there will be a sound like "avion's sound" and a boom , folowed by explosion ...that's basicly the "verry first script" I have in mind. """"



Contact : Yahoo - - Email address (only visible with login) -
Skype : katalyn_St3aua
xFire : shaaabaaazz

old Re: Lua Scripter [REQ]

Precel97
User Off Offline

Quote
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
function initArray(m)
local array = {}
for i = 1, m do
array[i]=0
end
return array
end
streak=initArray(32)


addhook("die","dx_die")
function dx_die(id)
if (player(id,"exists")) then
streak[id]=0
end
end

addhook("kill","dx_killx")
function dx_killx(id)
streak[id]=streak[id]+1
end
end


addhook("ms100","dx_hudtxt2")
function dx_hudtxt2()
     for id = 1,32 do
          if (player(id,"exists")) then
               parse('hudtxt2 '..id..' 49 "©255255255Streaks: '..streak[id]..'" 13 179')
          end
     end
end
Streak script , Check this but i don't tested this
edited 1×, last 25.04.11 12:25:09 pm

old Re: Lua Scripter [REQ]

Precel97
User Off Offline

Quote
I can do more then you think.
I do this maybe tomorrow i play on brother computer but my is not work.Tomorrow i buy the new computer...

old Re: Lua Scripter [REQ]

Precel97
User Off Offline

Quote
Oh sorry i forgot! I buyed new computer and i very heppy but computer is really good and i forgot.Now i don't have time to do this but i've been working on this
edited 1×, last 24.04.11 09:11:24 am
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview