Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ultimamax

Pages: 1 ... 247 248 249 250 251 [252] 253 254 255 256 257 ... 780
3766
General Discussion / Re: As any BL player been confirmed dead IRL?
« on: November 26, 2013, 11:08:26 PM »
oh forget you. he meant a lot to lots of people. if he was just a "random druggie", people would not have expressed sorrow.
edit: i know this word is overused, but stop trying to act so loving edgy. i suppose a better term would be "tryhard".

3767
Off Topic / Re: Need help decrypting this
« on: November 26, 2013, 11:03:49 PM »
???
Caesarian = rotating in the alphabet. eg if i had a caesarian 1:

gases

would become

hbtftf

comprende?

but you could also apply a different rotation on each letter

so s becomes 19, and we apply caesar 19 on the first one. then i becomes 8, and we apply caesar 8 on the second one, etc

3768
Off Topic / Re: Need help decrypting this
« on: November 26, 2013, 10:25:05 PM »
My guess is it's another Caesarian cipher. Try converting "SILLYNESS" to a=1,b=2,c=3,etc. and using those for each character rotation

3769
Off Topic / Re: oh boy, more microsoft advertising
« on: November 26, 2013, 09:48:27 PM »
Actually, Bing isn't that bad, is has more features than google does. Stop jumping on the Google bandwagon.
their search algorithms are stuff and they've been known to copy google's results (google tested this by artificially modifying the results to a search term and finding the bing search for that term had changed)

their search is so bad they have to pay people to use it (bing rewards)

microsoft is in a weird way right now. hopefully they'll fix their stuff, stop being massive hypocrites (they constantly abuse google for spying on the american people, when they do the same) and start creating better products

3770
Modification Help / Re: My questions thread
« on: November 25, 2013, 02:18:02 AM »
There's multiple things wrong with this code.
what was i thinking
sorry i based it off this from the coding resources sticky:
http://pastebin.com/raw.php?i=Vcg7XsDt
Code: [Select]
function serverCmdTimeoutMessage(%cl,%msg)
{
  if($timeoutLength $= "")
     $timeoutLength = 3000; //3 seconds default

   if(%cl.lastTimeUsed < getSimTime() - $timeoutLength)
  {
       chatMessageAll(%msg);
       %cl.lastTimeUsed = getSimTime();
  }
   else
   {
       echo(%cl.name @ "'s" SPC %msg SPC "not sent, timeout not complete");
   }
}
please tell me this will work it's 1 am i am tired pls  :panda:

3771
Modification Help / Re: My questions thread
« on: November 24, 2013, 08:47:49 PM »
How would one set a delay for a servercmd? I know this exists, can't really find it.
I want to use this so people don't spam the /report command which talks the issue into server chat.
You'd probably want a timeout, not a delay. A delay would just make the spamming occur a few seconds later. A timeout would prevent use of the command until the time is up again.
Let me demonstrate.
Code: [Select]

function swag(%msg,%timeout)
{
   %time = getSimTime();

   if(!(getSimTime() - %time > %timeout))
   {
       chatMessageAll(%msg);
   }
   else
   {
       echo(%msg SPC "not sent, timeout not complete");
   }
}


3772
Off Topic / Re: I think I might have lockjaw or something
« on: November 24, 2013, 06:43:03 PM »
If you suspect lockjaw, go to the doctor as soon as possible, because your jaw could lock up forever. That would suck.

3773
Off Topic / Re: game giveaway wieners announssed
« on: November 24, 2013, 04:05:14 PM »
apparently moons ago i got medal of honor with my GPU.

reroll, titanium!

3774
Modification Help / Re: My questions thread
« on: November 24, 2013, 03:22:29 PM »

//Made by Johnny Blockhead
package Hubcore
{
   //Auto Announcer
   function autoAnnounce(%AnnounceMsg)
   {
      cancel($announceSched);
      talk(%AnnounceMsg);
      $announceSched = schedule(1000 * 60 * 2, 0, autoAnnounce, %AnnounceMsg);
      %announceMsg = "Auto announcer";
   }
   
   //Check to see if file is up
   function servercmdIsUp(%Client)
   {
      messageClient(%client,'',"<color:ffffff>Johnny's Server Mod is up and running.");
   }
   
};
activatepackage("Hubcore");


I used the serverCmd to check if the package was executed. It was.
The Auto Announcer doesn't work
You have to pass the autoAnnounce function at least once for the loop to begin.

Can anyone link/explain how one would go about making a keybind that plays code? Client-sided.
http://forum.blockland.us/index.php?topic=182190.0


3775
Off Topic / Re: game giveaway
« on: November 24, 2013, 02:41:03 PM »
i'm in

3776
Modification Help / Re: My questions thread
« on: November 24, 2013, 02:46:52 AM »
Code: [Select]
function autoAnnounce(%msg)
{
  cancel($announceSched); //you should cancel schedules once they are used so they don't build up
  talk(%msg); //you can make this more sophisticated if you want by using chatMessageAll instead
  $announceSched = schedule(1000 * 60 * 2, 0, autoAnnounce, %msg); //1000 * 60 * 2 = two minutes in ms. we assign a pointer to the schedule so we can cancel it
}

3777
Development / Re: 2013/10/03 - Steam Status
« on: November 22, 2013, 12:39:10 AM »
or you could use code
to get this result:

autohotkey == coding

what do you mean by code? torquescript? now that i think about it, there is probably a function that is called to authenticate keys that you could play with.

3778
Drama / Anti-Brony SF and Anti-Brony SF Soldier - spammers
« on: November 21, 2013, 07:54:24 PM »
stupid spammers. they did this on "A Puffin Book's Skydiving TDM"

IDs:
16737
24622

3779
Suggestions & Requests / Re: Another Roleplay Chat
« on: November 20, 2013, 08:27:24 PM »
I wrote almost all of it. I'll try and finish it in a few hours, but I have things to do now.

3780
Suggestions & Requests / Re: Another Roleplay Chat
« on: November 20, 2013, 07:16:45 PM »
Working on it right now.

Pages: 1 ... 247 248 249 250 251 [252] 253 254 255 256 257 ... 780