Forum

> > CS2D > Scripts > Chat befehl
Forums overviewCS2D overview Scripts overviewLog in to reply

German Chat befehl

7 replies
To the start Previous 1 Next To the start

old Chat befehl

saar-pi
User Off Offline

Quote
Hallo leute habe meine erste LUA geschrieben und kenne mich damit auch noch nicht so wirklich aus
nun meine frage und zwar
ich habe in meiner lua ein if text benutzt.
wie kann ich das machen das wenn ich den befehl im spiel schreibe das der nicht angezeigt wird?
hoffentlich kann mir jemand weiter helfen

danke schonmal

old Re: Chat befehl

saar-pi
User Off Offline

Quote
öhm doofe frage hab jetzt ein wenig rumprobiert aber geht nich
wohin muss das genau
1
if(txt=="!feuer") then

old Re: Chat befehl

Brandy
User Off Offline

Quote
beispiel
1
2
if(txt=="!feuer") then
        return1

so

old Re: Chat befehl

saar-pi
User Off Offline

Quote
cool danke


habe noch eine frage und zwar wie muss ich das schreiben das wenn ein button auf der map gedrückt wird die lua reagiert?
edited 1×, last 04.01.11 12:21:39 pm

old Re: Chat befehl

Patasuss
User Off Offline

Quote
Versuchs mal mit dem "use"-hook:
1
use(id,event,data,x,y)

Den benutzt du dann so:
1
2
3
4
addhook("use","myUse")
fuction myUse(id,event,x,y)
--Hier dein Code
end

old Re: Chat befehl

Yasday
User Off Offline

Quote
Oder mit dem usebutton hook, ist leichter.
Glaub geht iwie so:
1
2
3
4
5
6
addhook([[usebutton]],[[ubb]])
function ubb(id,x,y)
	if x == ? and y == ? then
		--code
	end
end
Natürlich in Tiles, nicht Pixels.
edited 1×, last 05.01.11 04:02:30 pm
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview