05.05.2012, 16:48
Could you make a strreplace that works in OnPlayerText properly? even RyDeR`'s has a bug in OnPlayerText ;'\
EDIT: LOL I just realized you made one.. gonna test thanks
----
Here's a function to find a free slot in a unique column
EDIT: LOL I just realized you made one.. gonna test thanks
----
Here's a function to find a free slot in a unique column
Code:
SELECT MIN(Table.Uniqueid + 1) AS freeID\ FROM Table\ LEFT JOIN Table tf1\ ON Table.Uniqueid + 1 = tf1.Uniqueid\ WHERE tf1.Uniqueid IS NULL