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 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 Wenn das der ganze Script ist fehlen wichtige Teile,wie Yates schon sagte.Sollte dies nur ein Teil sein poste doch bitte den kompletten Script. 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 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
yo thx aber kommt fehler :
bad agrument to player (nummber need a nil value oder So) Einfach die Variable id mit p ersetzen. Boahhh danke