Show Posts
|
Pages: 1 [2] 3 4 ... 19
|
16
|
Liberty Unleashed / Liberty Unleashed Chat / Re: Is Lu Dead?
|
on: July 05, 2017, 01:48:46 pm
|
Dead? Not really.
Forums are still active. Discord is still active. A few servers are still running. A few people play daily. Pretty much the same as it has been for the last few years. It fluctuates, so we'll probably see some burst of activity soon before it slows down again.
|
|
|
18
|
Off Topic / General Chat / Re: Hi there guys
|
on: June 29, 2017, 07:10:15 am
|
You can put it on the forums, but the forums are pretty much dead. TurboGrafx is correct, more people are probably gonna help in the #Scripting channel on the LU discord. You'll also receive a much quicker response.
By the way, welcome to Liberty Unleashed!
|
|
|
21
|
Liberty Unleashed / Liberty Unleashed Chat / Re: Liberty Unleashed official Discord server
|
on: March 21, 2017, 03:41:39 pm
|
How come you are not allowed to view message history for any of the chats there?
We had some issues with a certain known individual insulting and trolling. After banning him he kept coming back. Because of this we had to limit new users as to what they can see and do. A member of discord staff can set you as a member. Just give us a shout and we'll get you set up. As a member you can see chat history and the new user restrictions are removed.
|
|
|
26
|
Scripting / Script Snippets / Re: Date
|
on: March 10, 2017, 12:41:48 pm
|
Note: This might not be the most efficient way to do this but i can't think of any other way so...
Here's another way to do it, too ... Months <- [ "January" , "February" , "March" , "April" , "May" , "June" , "July" , "August" , "September" , "October" , "November" , "December" ]; WeekDays <- [ "Sunday" , "Monday" , "Tuesday" , "Wednesday" , "Thursday" , "Friday" , "Saturday" ];
function GetDate ( part ) {
local current = date ( ); switch ( part.tolower ( ) ) { case "date": return current.day + " " + Months [ current.month ] + " " + current.year; case "day": return WeekDays [ current ]; case "time": return current.hour + ":" + current.min + ":" + current.sec; default: return GetDate ( "day" ) + ", " + GetDate ( "date" ) + " at " + GetDate ( "time" ); } return
}
|
|
|
28
|
Liberty Unleashed / Liberty Unleashed Chat / Re: Pickups.
|
on: March 03, 2017, 11:25:38 pm
|
It really depends on what they're for. If you'd like to have pickups be dynamic (adding and removing them during gameplay), then Scripts is obviously your choice.
If you just want pickups to spawn and never touch them again, use content.xml. Same goes for vehicles, objects, and everything that goes in content.xml (except colours and scripts)
|
|
|
|