Forum

> > CS2D > Scripts > cs2D player befehle gehen nicht!
Forums overviewCS2D overview Scripts overviewLog in to reply

German cs2D player befehle gehen nicht!

7 replies
To the start Previous 1 Next To the start

moved cs2D player befehle gehen nicht!

imanonym
User Off Offline

Quote
hallo leute =D "bitte beachten hab ein sinn vollen titel ;D"
ich habe bei cs2D ein bischen rumgespielt mit lua usw. und scripts also eig. kann ich lua aber nur für psp nun meine frage ich habe so ein befehl aber der geht nicht hier:

if (txt=="pos?") then msg("your position is
"..player(id,"y").."x"..player(id,"x"))

also nun auf deutsch wenn man pos? schreibt soll eine narchicht kommen deine position ist ...x... also y und x achse wie geht der befehl richtig? danke im vorraus

old Re: cs2D player befehle gehen nicht!

Yates
Reviewer Off Offline

Quote
Addhook?
Function?
Ends?
Script that will work?

Wrong section and forum.
German > cs2d > Lua

Admin/mod comment

No problem i fixed it!/Kein problem habs geändert! /Leiche

old Re: cs2D player befehle gehen nicht!

imanonym
User Off Offline

Quote
ahh sorry fehler von mir hier der ganze script


--------------------------------------------------
-- Some Say Functions by Unreal Software --
-- 22.02.2009 - www.UnrealSoftware.de --
--------------------------------------------------

if sample==nil then sample={} end
sample.sayfuncs={}


--------------------------------------
-- SAY FUNCTIONS --
--------------------------------------
addhook("say","sample.sayfuncs.say")
function sample.sayfuncs.say(p,txt)


     -- Time e.g.: 04:36 pm
     if (txt=="time?") then msg(os.date("Time: %I:%M %p")); end

     -- Date e.g.: Wednesday, 25 Feb 2009
     if (txt=="date?") then msg(os.date("Date: %A, %d %b %Y")); end

if (txt=="id?") then msg("your ID is "..p)

if (txt=="pos?") then msg("your position is "..player(id,"y").."x"..player(id,"x"))


-----------------------------
end
end
end





@EDIT nur if txt==pos klappt nicht

old Re: cs2D player befehle gehen nicht!

TimeQuesT
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
if sample==nil then sample={} end
sample.sayfuncs={}


--------------------------------------
-- SAY FUNCTIONS --
--------------------------------------
addhook("say","sample.sayfuncs.say")
function sample.sayfuncs.say(p,txt)


     -- Time e.g.: 04:36 pm
     if (txt=="time?") then msg(os.date("Time: %I:%M %p")); end

     -- Date e.g.: Wednesday, 25 Feb 2009
     if (txt=="date?") then msg(os.date("Date: %A, %d %b %Y")); end

if (txt=="id?") then msg("your ID is "..p) end
if (txt=="pos?") then msg("your position is "..player(id,"y").."x"..player(id,"x"))
end

-----------------------------

end
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview