Forum

> > CS2D > Scripts > Server.lua Script funktioniert nicht!
Forums overviewCS2D overview Scripts overviewLog in to reply

German Server.lua Script funktioniert nicht!

1 reply
To the start Previous 1 Next To the start

old Server.lua Script funktioniert nicht!

berkebaba35
User Off Offline

Quote
Hallo,

Ich habe folgendes Problem: Wenn Ich dieses Script anwende:

--
-- HC Admin Script
--
hc_dir = "sys/lua/hc"
hc_conf = hc_dir.."/hc.conf"
dofile(hc_dir.."/hc.lua")

geht alles. Also HC skript.

Wenn Ich jedoch das Reload/Reset score noch hinzufügen möchte, geht es nicht mehr. Ich versuche dieses code am sys/lua/Server.lua

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
addhook("reload","fastreload")
function fastreload(id,mode)
wp = player(id,"weapontype")
	if mode==1 then
		parse("equip "..id.." "..wp)
		parse("setweapon "..id.." "..wp)
	end
end

addhook("say","reset") 
function reset(id,txt) 
   if(txt=="!rs") then
parse ("setscore "..id.." ..sc")
parse ("setdeaths "..id.." ..sc")
parse ("sv_msg2 "..id.." ©255000000Script by: UnderBlue")
msg("©000000255"..player(id,"name").." reset their scores!")
          end 
   end


--
-- HC Admin Script
--
hc_dir  = "sys/lua/hc"
hc_conf = hc_dir.."/hc.conf"
dofile(hc_dir.."/hc.lua")

sc = "0"


Woran liegt das?
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview