View unanswered posts | View active topics It is currently Thu May 02, 2024 9:46 am



Reply to topic  [ 140 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 10  Next
 Quick Console Commands 
Author Message
User avatar

Joined: Fri Jan 26, 2007 3:22 am
Posts: 1451
Reply with quote
Post Re: Quick Console Commands
Beef wrote:
Daman wrote:
Who cares. Java is not even a real language. You must have some kind of extra 21st chromosome if you think it is.

And by the way I said you can't enumerate properly which is done using for in so uh great job arguing that for is an iterator to yourself. It's not even relevant.

I'm right as usual though. Nice one.

Please stop posting, you've ignored half the valid points he's made and instead spew pointless insults and self-contradictions.


What are you talking about? Stop making off-topic posts.

By the way I haven't self-contradicted myself sorry go read a dictionary if you don't know what that means OR SOMETHING.

The point I made was that it doesn't matter because for in is usually used to enumerate or similar. He continued the stream of DOESN'T MATTER AT ALL.


Mon Aug 25, 2008 3:41 am
Profile

Joined: Mon Aug 25, 2008 1:03 am
Posts: 10
Reply with quote
Post Re: Quick Console Commands
Java aside, I'm pretty sure C++ would qualify as a real programming language.

Anyway, you can use an Iterator to Enumerate the elements in a table. Arguing about word meanings is boring.


Mon Aug 25, 2008 3:54 am
Profile
User avatar

Joined: Fri Apr 27, 2007 4:55 pm
Posts: 1178
Location: America!
Reply with quote
Post Re: Quick Console Commands
Hey guys, that stuff isn't what this thread is about. Anymore of it and you get warns.


Mon Aug 25, 2008 5:46 am
Profile
User avatar

Joined: Tue Dec 12, 2006 3:10 pm
Posts: 495
Location: Uncertain quantum state
Reply with quote
Post Re: Quick Console Commands
Fightbreaker!
Crabbomb from teh SKY!
Code:
local rocket = CreateACRocket("Rocket MK1") for c=1,17 do local c = CreateACrab("Crab") rocket:AddInventoryItem(c) end P = ActivityMan:GetActivity():GetControlledActor(0) rocket.Pos = Vector(P.Pos.X,P.Pos.Y-300) rocket.Vel = Vector(0,30) MovableMan:AddActor(rocket)


Someone tell me how to rotate that rocket 180 degrees!


Mon Aug 25, 2008 8:29 pm
Profile
User avatar

Joined: Wed Dec 27, 2006 10:05 pm
Posts: 100
Reply with quote
Post Re: Quick Console Commands
Azukki wrote:
casey wrote:
azukki,
Code:
for actor in MovableMan.MOs do if SceneMan.Scene:WithinArea("areaname") then actor

Not working for me. Is this right? It works fine for actors when "MOs" is "Actors"
Code:
    for actor in MovableMan.MOs do
        if SceneMan.Scene:WithinArea("bounce", actor.Pos) then
         actor.Vel.Y = actor.Vel.Y * -0.95;      
        end   
    end

okay


Mon Aug 25, 2008 8:56 pm
Profile
DRL Developer
DRL Developer
User avatar

Joined: Tue Jul 27, 2004 8:02 pm
Posts: 428
Location: AZ
Reply with quote
Post Re: Quick Console Commands
Some quick tips here:

Save all the things you've typed/pasted into the console so far:
Code:
ConsoleMan:SaveInputLog("myconsoleinput.txt")


Save ALL the text currently in the console to a file
Code:
ConsoleMan:SaveAllText("myconsoletext.txt")


Change how much of the screen the console takes up: 0 - 1.0
Code:
ConsoleMan.ScreenSize = 0.5


Just wait for the full documentation of the Lua bindings..
The console will also be polished up a bit more, don't worry.

- D


Mon Aug 25, 2008 10:32 pm
Profile ICQ

Joined: Sun May 18, 2008 5:47 am
Posts: 265
Reply with quote
Post Re: Quick Console Commands
Data wrote:
Just wait for the full documentaiton of hte lua bindings.. you will get a lot of power.

- D

Cant wait... Once that happens, I'll start to piece together all the random stuff people have done and maybe code something in Lua for myself. Till then, totally lost :P


Mon Aug 25, 2008 10:35 pm
Profile

Joined: Wed Aug 20, 2008 2:17 am
Posts: 5
Reply with quote
Post Re: Quick Console Commands
Did we seriously have over two pages worth of fighting over the difference between iterating and enumerating?

Jesus ♥♥♥♥, that's pathetic.

Welcome to a programming forum.

Sleeping dogs and letting them lie. Do so.


Tue Aug 26, 2008 1:02 am
Profile
User avatar

Joined: Sun Nov 11, 2007 1:49 pm
Posts: 785
Reply with quote
Post Re: Quick Console Commands
"ConsoleMan.ScreenSize"

That's a great one!
Why is it called ConsoleMan?
Why the Man?


Tue Aug 26, 2008 9:21 pm
Profile
User avatar

Joined: Fri Apr 27, 2007 4:55 pm
Posts: 1178
Location: America!
Reply with quote
Post Re: Quick Console Commands
Man is short for Manager.


Tue Aug 26, 2008 9:29 pm
Profile
User avatar

Joined: Sun Nov 11, 2007 1:49 pm
Posts: 785
Reply with quote
Post Re: Quick Console Commands
Ohhh alright.
I thought Man was for.. well, Man. :V


Tue Aug 26, 2008 9:35 pm
Profile
User avatar

Joined: Tue Dec 12, 2006 3:10 pm
Posts: 495
Location: Uncertain quantum state
Reply with quote
Post Re: Quick Console Commands
ZOMG SPEEDHAX!
Code:
SceneMan:AddSceneObject(ToSceneObject(ActivityMan:GetActivity():GetControlledActor(0)))


Watch out, REAAAALLY crashy.


Fri Aug 29, 2008 12:49 pm
Profile

Joined: Mon May 26, 2008 2:13 am
Posts: 2
Reply with quote
Post Re: Quick Console Commands
Data wrote:
The console will also be polished up a bit more, don't worry.

Why not render and control the console via bindings exposed to Lua so we can polish it up? I did such a thing in LÖVE.


Sat Aug 30, 2008 6:18 am
Profile
User avatar

Joined: Fri Apr 27, 2007 4:55 pm
Posts: 1178
Location: America!
Reply with quote
Post Re: Quick Console Commands
Hooray Löve! Also, the console needs to intercept input before the game logic does, or like, have a function to check whether the console is down so you can do that yourself, because any input you do into the console is still caught by the Lua scripts.


Sat Aug 30, 2008 3:21 pm
Profile
User avatar

Joined: Thu Sep 14, 2006 10:44 pm
Posts: 488
Location: bay12forums.com
Reply with quote
Post Re: Quick Console Commands
Woah, you mean LOVE that game? :grin:



Also, I agree with Tim, because he knows alot about Lua.


The game should have the option to pause when you open the console. :???:


Sat Aug 30, 2008 9:03 pm
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 140 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 10  Next

Who is online

Users browsing this forum: No registered users


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.
[ Time : 0.029s | 17 Queries | GZIP : Off ]