Forum

> > CS2D > Scripts > Falscher oder Fehlerhafter Script
Forums overviewCS2D overview Scripts overviewLog in to reply

German Falscher oder Fehlerhafter Script

8 replies
To the start Previous 1 Next To the start

old Falscher oder Fehlerhafter Script

DiC
User Off Offline

Quote
Ich habe ein script schuss verstärken der
1
2
3
4
5
6
7
8
9
10
11
admin = {1}
schaden = 1000

addhook("hit","lol")
function lol(k,v,w,x,y)
     for _, a in ipairs(admin) do
          if player(k,"usgn")==a then
               parse("sethealth "..v.." "..player(v,"health")-schaden)
          end
     end
end
aber da werde ich nur und sterblich
obwohl ich mit einem usp oder o was
jemanden killen könnte mit ein shuss
wieso könnt ihr helfen
edited 1×, last 31.01.12 08:28:50 pm

old Re: Falscher oder Fehlerhafter Script

TimeQuesT
User Off Offline

Quote
1
2
3
4
5
6
7
8
9
10
11
admin = {DEINE USGN ID DU KRÜPPEL!}
schaden = 1000

addhook("hit","lol")
function lol(k,v,w,x,y)
for _, a in ipairs(admin) do
if player(v,"usgn")==a then
parse("sethealth "..k.." "..player(k,"health")-schaden)
end
end
end
Wurstkopf hast die Parameter vertauscht!

edit:
und bitte benutze demnächst Nen' Code-Tag.

old Re: Falscher oder Fehlerhafter Script

DiC
User Off Offline

Quote
und noch e frage wie kann ich in mein server nur ich wallhack benutzen
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
63
64
65
66
67
68
function Array(size,value) 
	local array = {}
	for i = 1, size do
		array[i]=value
	end
	return array
end

ct_man = Array(32,false)
adminnokill = Array(32,false)

adminList = {0}

function isAdmin(id)
     for _, usgn in ipairs(adminList) do
          if player(id,'usgn')==usgn then
               return true
          end
     end
     return false
end

addhook([[join]],[[thejoin]])
function thejoin(id)
     if isAdmin(id) then
          msg("©000000255Admin "..player(id,"name").." enters the server!")
     end
end

addhook([[team]],[[theteam]])
function theteam(id,t)
     if isAdmin(id) then
          if t==2 then
               adminnokill[id]=true
               ct_man[id]=true
          elseif t==1 then
               ct_man[id]=true
		  end
     else
          if t==2 then
               parse("maket "..id)
               return 1
          end
     end
end

addhook([[hit]],[[thehit]])
function thehit(id,source,weapon,hpdmg,apdmg)
     if adminnokill[id]==true then
          return 1
     end
end

addhook([[serveraction]],[[servaction]])
function servaction(id,acti)
   if ct_man[id]==true then
      if acti == 3 then
         local rot = player(id,[[rot]])
         if rot < -90 then rot = rot + 360 end
         local angle = math.rad(math.abs( rot + 90 )) - math.pi
         local x = player(id,[[x]]) + math.cos(angle) * 25
         local y = player(id,[[y]]) + math.sin(angle) * 25
         if x > 0 and y > 0 and x < map([[xsize]]) * 32 and y < map([[ysize]]) * 32 then
            parse([[setpos ]]..id..[[ ]]..x..[[ ]]..y)
         end
      end
   end
end
edited 1×, last 31.01.12 08:28:02 pm

old Re: Falscher oder Fehlerhafter Script

TimeQuesT
User Off Offline

Quote
Wallhack und ein "Noclip" lua sind zwei erschieden Dinge!

adminList = {0} <-- DA MUSST DU DEINE USGN ID reinpacken!

und wie ich bereits erwähnt: bitte BENUTZE code-tags!

old Re: Falscher oder Fehlerhafter Script

Blunt
User Off Offline

Quote
@user DiC: das du Scripten kannst ist ja Klasse.
Ich teste dein Script mal.

Ich wollte dies nur Fetshalten. "Krüppel" lol!

user TimeQuesT has written
1
2
3
4
5
6
7
8
9
10
11
admin = {DEINE USGN ID DU KRÜPPEL!}
schaden = 1000

addhook("hit","lol")
function lol(k,v,w,x,y)
for _, a in ipairs(admin) do
if player(v,"usgn")==a then
parse("sethealth "..k.." "..player(k,"health")-schaden)
end
end
end
Wurstkopf hast die Parameter vertauscht!
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview