Ich habe ein Poblem also ich habe ein Script
mit so ein Auto
Wen ich !Car mache dan kommt der Auto
wen ich !Exit mache Geht der wieder nomal alles wieder ok Aber das Poblem ist das Auto ist Noch auf mein Player Drauf
Hier noch mal der Script
addhook("say","attack")
function attack(id,txt)
if(txt=="!car") then
freeimage(id)
parse("speedmod "..id.." 28")
parse("setmaxhealth "..id.." 200")
parse("setarmor "..id.." 80")
id1=image("gfx/carmod/car.png",1,1,200+id)
imagescale(id1,1,1)
imageblend(id1,0)
imagealpha(id1,1.0)
if (player(id,"team") == 2) then
imagecolor(id1,255,255,255)
end
end
end
addhook("say","attack2")
function attack2(id,txt,p)
if(txt=="!exit") then
parse("speedmod "..id.." 0")
parse("strip "..id.." 0")
parse ("setmaxhealth "..id.." 100")
parse ("setarmor "..id.." 0")
freeimage(id)
id1=image("gfx/flare2.bmp",0,0,100+id)
imagescale(id1,1,1)
imageblend(id1,1)
imagealpha(id1,0.7)
if (player(id, "team") == 2) then
imagecolor(id1,0,0,0)
elseif (player(id,"team") == 1) then
imagecolor(id1,0,0,0)
end
end
end
Freu mich Schon auf Antworten