Forum

> > CS2D > Scripts > Code Einfügen +Extra Life lua
Forums overviewCS2D overview Scripts overviewLog in to reply

German Code Einfügen +Extra Life lua

1 reply
To the start Previous 1 Next To the start

old Code Einfügen +Extra Life lua

WeArePain
User Off Offline

Quote
1.

ich habe diesen Code hier gefunden

function lvlandexpsys(id)
for id = 1,32 do
if player(id,"exists") then
if(levelsystem==1) then
parse('hudtxt2 '..id..' 1 "©255128000Level: '..lvl[id]..' " 10 150')
parse('hudtxt2 '..id..' 2 "©128255000Exp : '..xexp[id]..'/'..upexp[id]..' " 10 165')
else
parse('hudtxt2 '..id..' 1 " " 10 150')
parse('hudtxt2 '..id..' 2 " " 10 165')

end
end
end
end

function save_leave(id)
if (player(id,"usgn")>0) then
io.output(io.open("sys/lua/lvlandexpsaves/"..player(id,"usgn")..".txt","w+"))
io.write(xexp[id].."/"..upexp[id].." "..lvl[id])
io.close()
end
end

function save_die(id)
if (player(id,"usgn")>0) then
io.output(io.open("sys/lua/lvlandexpsaves/"..player(id,"usgn")..".txt","w+"))
io.write(xexp[id].."/"..upexp[id].." "..lvl[id])
io.close()
end
end

function save_join(id)
if (player(id,"usgn")>0) then
local filename = "sys/lua/lvlandexpsaves/%s.txt"
local file = io.open(filename:format(player(id,"usgn"), "r"))
local line
if not file then
line = {0, 1}
msg2(id,"©255000000Failed to save!@C")
else
line = file:read("*a"):split()
end
xexp[id] = tonumber(line[1]) or 0
lvl[id] = tonumber(line[2]) or 1
else
msg2(id,"©255000000No USGN found!@C")
level[id]=1
end
end

wo soll ich den Einfügen ?

________________________________
Frage 2

http://www.unrealsoftware.de/files_show.php?file=5185

wenn ich dann Spiele steht da oben Links : "Extra Life:0" wie kriege ich das höher ?

old Re: Code Einfügen +Extra Life lua

Bowlinghead
User Off Offline

Quote
Antwort 1:
Öffne TExteditor, kopiere diesen Script dorthinein und bennene die Datei "XXX.lua" (XXX=Irgendetwas).
Dann tue das in "Counter-Strike2D/sys/lua/XXX.lua".
Starte CS2D. Gehe auf "New Game" und dann bei erweiterten einstellung "mp_luaserver" (o.ä.) und gib dort ein "XXX.lua" dann starte das Game.

Antwort 2:
Les die beschreibung!!
!sethp (id) (hp)

Tipp :
Benutze für Scripts am besten [b]
1
2
Text [/code ][/b]. (Ohne Leertasten)
Dann wird der Text [code]Übersichtlicher Dargestellt.
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview