Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Poll

Which update would you like the most?

Randomized Backstories
- 67 (25.9%)
Genetic Additions
- 98 (37.8%)
Mess Hall
- 50 (19.3%)
Revamped Area
- 44 (17%)

Total Members Voted: 257


Pages: 1 ... 925 926 [927] 928 929 ... 950

Author Topic: Space Station 13 *READ RULES ON FIRST POST*  (Read 808013 times)

nuker w

  • Bay Watcher
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13890 on: June 18, 2010, 06:09:42 pm »

No taser icons?... Fun, fun fun....
Logged

Orb

  • Bay Watcher
  • [Loves_RTS]
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13891 on: June 18, 2010, 06:28:13 pm »

Well, west's server is up. Its just that, no one is on.  :o
byond://74.194.120.230:9625  This one? If it is I'm on it.

Hmm, am im on it? If not, you must have the wrong server or something whacky. Or im on the wrong server, except several people joined...
I'm ineedabettername.


Yep, your here.

We have some people here. So if anyone else didnt want to join due to no people....welp, problem somewhat solved.
Logged
[Will:1] You scream. You scream like a little girl in pigtails and a tutu, flailing ineffectually like a starfish on meth.

nuker w

  • Bay Watcher
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13892 on: June 18, 2010, 06:35:47 pm »

Quick coding question, how does I make a verb usable only once?
Logged

qwertyuiopas

  • Bay Watcher
  • Photoshop is for elves who cannot use MSPaint.
    • View Profile
    • uristqwerty.ca, my current (barren) site.
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13893 on: June 18, 2010, 06:51:05 pm »

Once per round, once per player, once per hour, what do you mean by once?

Once per round is basically create a global var to track if it has already been used, once per player is either keeping a list of users, or storing it on the client, per hour would be storing the last used time on the client...

Edit:
You could also try removing the verb from them after they use it.
Logged
Eh?
Eh!

The Scout

  • Bay Watcher
  • ?????
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13894 on: June 18, 2010, 06:52:05 pm »

I'm still waiting to put up a useable atmo.
Logged
Whatever you do, don't agree to stop looking at pornography or getting help from Jesus.
"mind if I sig this"
 - Person who isn't actually going to put that in their sig

nuker w

  • Bay Watcher
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13895 on: June 18, 2010, 06:56:11 pm »

I mean like... once per a round.
Logged

qwertyuiopas

  • Bay Watcher
  • Photoshop is for elves who cannot use MSPaint.
    • View Profile
    • uristqwerty.ca, my current (barren) site.
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13896 on: June 18, 2010, 06:58:36 pm »

Then, just above the /verb declaration, add
/var/verbnamehereHasBeenUsed = 0

And test against it/set it within the verb itself, so that it will not trigger after it has been used once. world.Reboot() resets everything, so at the next round, it will start a 0 again.
Logged
Eh?
Eh!

nuker w

  • Bay Watcher
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13897 on: June 18, 2010, 07:01:44 pm »

Just checking you understand what I mean, the verb is used once on an "item"  by one person. Will that just effect that item or all of them verbs related to all the items?
Logged

Googolplexed

  • Bay Watcher
  • My avatar is of whitespace, Not the firefox logo
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13898 on: June 18, 2010, 07:11:43 pm »

Maybe his should move to the byond coding thread
Anyway, nuker, most of these questions are pretty basic
You might want to try to learn to code by just downloading the goonstation
source and messing around with that, don't bother with a big project now

Soon I should be able to bring online the bs12 server
I think (hope) to have fixed the door permissions by then
« Last Edit: June 18, 2010, 07:13:29 pm by Googolplexed »
Logged

Orb

  • Bay Watcher
  • [Loves_RTS]
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13899 on: June 18, 2010, 07:35:39 pm »

Could we have taser/laser sprites? Im not sure how hard it is, but it seems a simple change.


Also, my turret -which was stunning- just blew up my other turret. Ow.
Logged
[Will:1] You scream. You scream like a little girl in pigtails and a tutu, flailing ineffectually like a starfish on meth.

garfield751

  • Bay Watcher
  • Aaauuugggghhhh!
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13900 on: June 18, 2010, 09:07:14 pm »

monkeys dont seem to be able to use chips like the freeform and one human ones where you need to enter stuff.

qwertyuiopas

  • Bay Watcher
  • Photoshop is for elves who cannot use MSPaint.
    • View Profile
    • uristqwerty.ca, my current (barren) site.
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13901 on: June 18, 2010, 09:21:43 pm »

Just checking you understand what I mean, the verb is used once on an "item"  by one person. Will that just effect that item or all of them verbs related to all the items?

Oh, you mean a one-use item? Then you put the var on the item rather than globally.
Quote
/obj/item/oneuse
   var/used = 0

var/oneuseglobalused = 0
/obj/item/oneuseglobal

/obj/item/oneuse/verb/use()
   if(used)
      usr << "It has already been used. Get a different one"
   else
      used = 1
      doSomething()

/obj/item/oneuseglobal
   if(oneuseglobalused)
      usr << "Sorry, no instance of this item will work this round, as one has already been used"
   else
      oneuseglobalused = 1
      doSomethingElse()
(Quote used rather than code, as code doesn't like tabs)
Logged
Eh?
Eh!

nuker w

  • Bay Watcher
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13902 on: June 18, 2010, 10:41:24 pm »

Thanks for that code, whats the dedicated servers IP please?
Logged

The Scout

  • Bay Watcher
  • ?????
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13903 on: June 18, 2010, 11:17:29 pm »

Thanks for that code, whats the dedicated servers IP please?
byond://74.194.120.230:9625
Logged
Whatever you do, don't agree to stop looking at pornography or getting help from Jesus.
"mind if I sig this"
 - Person who isn't actually going to put that in their sig

nuker w

  • Bay Watcher
    • View Profile
Re: Space Station 13 *READ RULES ON FIRST POST*
« Reply #13904 on: June 18, 2010, 11:17:53 pm »

Wow, that was... Horrible.
Logged
Pages: 1 ... 925 926 [927] 928 929 ... 950