Search found 1332 matches
- Sun Mar 30, 2025 8:03 pm
- Forum: Wishlist
- Topic: ProtectTable() command which would prevent more variables being added
- Replies: 3
- Views: 419
Re: ProtectTable() command which would prevent more variables being added
Took a try and here is a working example: mt = {} Function mt.__newindex(Table, Index, Content) DebugPrint("Error! - - - Trying to Add new Table Index!") DebugPrint("Table:") DebugPrint(Table) DebugPrint("Index:") DebugPrint(Index) DebugPrint("Content:") Debug...
- Sun Mar 30, 2025 7:53 pm
- Forum: Wishlist
- Topic: ProtectTable() command which would prevent more variables being added
- Replies: 3
- Views: 419
Re: ProtectTable() command which would prevent more variables being added
True! And great idea JPV. Didnt come to my mind it could already be achieved through metamethods, and also, this opens other possibilities too, could turn out something very useful in the future now that I realise there is such an option.
- Wed Mar 26, 2025 5:00 pm
- Forum: Wishlist
- Topic: ProtectTable() command which would prevent more variables being added
- Replies: 3
- Views: 419
ProtectTable() command which would prevent more variables being added
Probably too much work, but throwing this here in case you one day start making some debugging thing. Came to my mind that one of the hard to track bugs is when you do a misspelling on a variable. As example: Enemy.MovementAmount = 1 vs Enemy.MovmenetAmount = 2 You might only notice that there is so...
- Thu Mar 13, 2025 9:39 am
- Forum: Newbie questions
- Topic: safe to use enablelinehook/disablelinehook twice in a row?
- Replies: 2
- Views: 611
Re: safe to use enablelinehook/disablelinehook twice in a row?
In this case I dont think it is worth tracking it down, since this is caused by some extra options which increase the speed of the game, since by default it is too slow for Amigas. These extra speed options are not exactly safe, but they cause some other problems too, so one more bug there isn't tha...
- Wed Mar 12, 2025 4:11 pm
- Forum: Newbie questions
- Topic: safe to use enablelinehook/disablelinehook twice in a row?
- Replies: 2
- Views: 611
safe to use enablelinehook/disablelinehook twice in a row?
I have a bug in my code where for some reason Disablelinehook() in some case stays on, as in it goes to a part of code where EnableLineHook() should have already happened and yet it didnt. instead of finding out where this happens, I am instead using EnableLineHook() at that other part of code. But ...
- Sat Mar 08, 2025 8:29 pm
- Forum: Wishlist
- Topic: MakeButton to return ID also when ID is given
- Replies: 4
- Views: 1616
Re: MakeButton to return ID also when ID is given
@flinx
Thanks!
That works and solves my problem of needing to do two different makebuttons.
Thanks!
That works and solves my problem of needing to do two different makebuttons.
- Fri Mar 07, 2025 12:35 pm
- Forum: Wishlist
- Topic: MakeButton to return ID also when ID is given
- Replies: 4
- Views: 1616
MakeButton to return ID also when ID is given
To demonstrate: ID=2 NewID = MakeButton(ID, #SIMPLEBUTTON, 100, 100, 100, 100, {OnMouseDown = Function() DebugPrint("mouse down") EndFunction}) DebugPrint(NewID) WaitEvent() If you change ID to nil, it gives userdata. I was having in my program a makebutton function, which sends, along the...
- Thu Mar 06, 2025 7:13 am
- Forum: General programming
- Topic: Does FreeBrush frree Brush immediatelly?
- Replies: 3
- Views: 2057
Re: Does FreeBrush frree Brush immediatelly?
@jpv, thanks from that "GetMemoryInfo()" part, hadnt noticed command like that before.
- Wed Mar 05, 2025 9:04 pm
- Forum: General programming
- Topic: Any way deleting item from a table when only var containing it is known?
- Replies: 2
- Views: 744
Re: Any way deleting item from a table when only var containing it is known?
sorry my mistake in the example. ItemVar is a table, not variable.
Code: Select all
Function somefunc(Item)
Delete Item from Mytable?
EndFunction
mytable = { [1] = {},
[2] = {}
}
ItemVar = Mytable[n]
somefunc(ItemVar)
- Wed Mar 05, 2025 2:17 pm
- Forum: General programming
- Topic: Any way deleting item from a table when only var containing it is known?
- Replies: 2
- Views: 744
Any way deleting item from a table when only var containing it is known?
I am rewriting my code to work faster, and right now I am in bit of a problem. Situation is that I have this table containing items, and I am in need of deleting a specific one of them out. However, problem is that I don't have access to the table at that point, but only to the item. As in situation...