Search found 107 matches

by pedrosgali
Sat Jul 23, 2016 10:27 am
Forum: Games and Creations
Topic: My projects and demos
Replies: 95
Views: 50178

Re: My projects and demos

Looking good so far man, I'd personally try and keep the spectrum feel to it but that's what cyberpunk makes me think of. Its a bit like minidisk for me, yesterdays future today!
by pedrosgali
Thu Jul 14, 2016 8:05 pm
Forum: Support and Development
Topic: Problem with table serialization
Replies: 8
Views: 4644

Re: Problem with table serialization

I think the problem is with counting from 0 to map.width instead of map.width - 1, it thinks the map is one wider than it is so the first block of row 2 is on the end of line 1. After a few lines the map would look very different. This is a total guess though, not a lot of info to go on here.
by pedrosgali
Mon Jul 11, 2016 7:36 pm
Forum: General
Topic: Need some help with learning Lua
Replies: 6
Views: 7959

Re: Need some help with learning Lua

If you do already know a bit about programming I found this useful
by pedrosgali
Sun Jul 03, 2016 8:41 am
Forum: Games and Creations
Topic: My projects and demos
Replies: 95
Views: 50178

Re: My projects and demos

Lol it was netrunners that held the game up for us, half an hour of roleplay just to open a locked door!
Good luck with this project, should be a real blast from the past. :)
by pedrosgali
Sat Jul 02, 2016 1:14 pm
Forum: Games and Creations
Topic: My projects and demos
Replies: 95
Views: 50178

Re: My projects and demos

I think bottom right for the stat would be good, centralised they might look odd with the back button where it is. Is this a Cyberpunk RPG? I saw the word Netrunner and that got me excited, I used to play tabletop Cyberpunk many moons ago. Good times. :) *Edit: You mis-spelled Corporate on the INT s...
by pedrosgali
Sat Jul 02, 2016 12:19 pm
Forum: Games and Creations
Topic: My projects and demos
Replies: 95
Views: 50178

Re: My projects and demos

Looks better to me than the previous one, a bit sleeker. I think maybe have an extra button on the bottom like 'all' or 'overview' so you can have just one screen to look at in a hurry that just shows all your stats then the individual tabs for when you need clarification. Also maybe a bar on each s...
by pedrosgali
Wed Jun 15, 2016 6:31 pm
Forum: Support and Development
Topic: Is it possible to make the window start as maximized?
Replies: 4
Views: 3890

Re: Is it possible to make the window start as maximized?

Try adding
t.window.fullscreen = true
t.window.fullscreentype = "exclusive"
To your conf.lua.

Edit: I'd add a link to the wiki page but I'm at work on my phone. Hope this helps.
by pedrosgali
Mon Jun 13, 2016 8:35 am
Forum: General
Topic: Mini Functions Repository
Replies: 48
Views: 41415

Re: Mini Functions Repository

Hey ZBoyer, those functions reminded me of my first data serializer:- -- Returns a single string gathered recursively from the table 't' The spacing value is for indentation as I am a stickler for human readable serialization just leave it as nil when you call the function and it'll indent at every ...
by pedrosgali
Sat Jun 11, 2016 3:02 pm
Forum: Support and Development
Topic: keep geting nill for the monsters global but idk why plz have a look at my code
Replies: 14
Views: 5219

Re: keep geting nill for the monsters global but idk why plz have a look at my code

Think you just need to add return enemy as the last line of enemy.lua, currently from what I can tell you don't return the enemy table so require would return nil.