Yea... Hopefully very soon... I know they were getting a DDoS attack(that was supposibly only effecting users on 1 IP) earlier in the week, but geez, this shouldn't take down their whole network...
Yea, like I said, in the past when this happens, dean will usually give effected people(which seems to be quite a few people), an extension of days server was offline...
Still waiting for any news of the servers coming online... What ever happened to that other support guy dean hired?
I also tried Timers:: but then it spits out an error saying wrong permissions... tried changing to public, still nothing, but error went away... But I think I just thought of a way, I could easily implement this as a plugin ... maybe... I'll have to actually try it to be sure...
LFSLapper Cruise ... Old but still works great and has many features... but don't expect to add any features to it... my old code is messy as heck.
Extract to some where easily accessable such as your desktop
(optional)Edit Cruise_Settings.lpr
Edit:
LFSServers.cfg (.../bin)
default_1.ini (.../bin/default)
Run LFSLapper.exe
Type !mode Cruise into the LFS Chat
Congratulations you'r now using LFSLapper Cruise!
Features:
Cars
Cash
Refund And Force Fine System (Car,Cash,OR KM)
HUD
Swear filter
Showoff Function(show off your stats to everyone on server) (!Show)
Can't Buy cars / food if u don't have enough Cash
Driving Bonus
Buy/Sell cars
Bank
Pit Fines
KM
Bank Interest
Happy Hour
Cop system
Ability To Rob bank
Lotto
And More!
I think it is certainly a new approach to cruising. I wonder how long till more of these servers show up. Maybe this will spread like a wild fire just like cruising did.
Thanks Mate. Cruise isn't the only thing [SC] is gonna be... It's just the insim I had lying around from a while ago, that I decided to go back recode old features, and add some new, and unique features. Would really like to get to be in the better known servers. But Like you said, with not that many users Things are gonna be hard, which is where having unique features come in hand.
Hello all, I am the owner of [SC], I have recently started a cruise server(Yes I know just what we need another cruise server.). The insim is in beta, but has some unique features, and many features you find on other cruise servers...
Please check out my server: [SC] Cruise Server
Unique Insim Features:
Game Saves/Profiles (You can have multiple stats per account)
Usual features:
Cash
Distance Tracking
Health
Distance Bonus
Cadet/Cop system
Jobs
Shops
Features coming very soon:
Bank+Bank Bonus
Once again, I hope you guys will at least give my server a try.
<?php public function getAdminInfo(&$username) { $username = strToLower($username); ?>
I was just curious because it seemed to cause issues with
<?php protected function canUserAccessCommand($UCID, $cmd) { # Hosts are automatic admins so due to their nature, they have full access. # Commands that have no premission level don't require this check. if ($UCID == 0 OR $cmd['accessLevel'] == -1) return TRUE;
Just good experiences in the past, that, and some of these company's/people I don't know/have any experience with them. Rather spend my money somewhere where I know I will have a good experience at then some random company.
I was just suggesting that it be added with 5.0 since If I remember correctly you said that it would most likely break the compatibility with existing plugins anyways
I have. timers working with names now I attatched it to my previous post, not sure if you saw that or not, would be a nice sttarting point for you.... I figure you would take that and make the code a bit cleaner...
Edit: See Attatchment(I made it for you, but, It's probably horrible PHP compared to you, but it is FULLY working)
Edit2: Just noticed, But Giving the timers names fixed this bug aswell;
Edit3: Something just came to mind, when unsetting a timer, might be a good idea to check if timer exist, not sure if PHP throws an error or not when trying to unset something that doesn't exist
Edit4: Doesn't seem like it throws an error so.. Not really that important to worry about, but, I will leave that up to you :P
<?php public function InitButton($Name, $Group, $T=0, $L=0, $W=1, $H=1, $BStyle=null, $Text='') { $Button = new Button($this->UCID, $Name, $Group); $Button->T($T)->L($L)->W($W)->H($H); $Button->BStyle($BStyle); $Button->Text($Text); $Button->Send(); #IS_MTC()->UCID($this->UCID)->Text('^2> ^7Buttons No Work??.')->Send(); } public function UpdateButton($Name, $Text='') { $Button = ButtonManager::getButtonForKey($this->UCID, $Name); $Button->Text($Text); $Button->Send(); } ?>
Last edited by T3charmy, .
Reason : Uploaded Attatchment+Changed My code for buttons...