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 ... 90 91 [92] 93 94 ... 950

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

Neonivek

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1365 on: June 21, 2009, 02:13:42 pm »

Jumping in as a guest. (Not joining Byond until I get a hang of things)

Nevermind I can't tell what room to join.
Logged

Dr. Johbson

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1366 on: June 21, 2009, 02:17:24 pm »

Jumping in as a guest. (Not joining Byond until I get a hang of things)

Nevermind I can't tell what room to join.

Not up yet, you'll see which one soon.
Logged

Dr. Johbson

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1367 on: June 21, 2009, 02:20:43 pm »

Having some problems, going to restart my PC..
Logged

Floirt

  • Bay Watcher
  • OMIGODJCABOMB!
    • View Profile
Re: Space Station 13
« Reply #1368 on: June 21, 2009, 02:20:51 pm »

Hmmm. I think I can set it up so your internals get removed when the gas run out, and maybe announce it to you too. I'll snoop around the code.

It's not wooorking! Argh. The code compiled, through. I think I used the wrong variable or something.

EDIT: Okay, I'm gonna need help on this one. Here's the code:

Code: [Select]
/obj/item/weapon/tank/attack_self(mob/user as mob)
user.machine = src
if (!( src.gas ))
return
var/dat = text("<TT><B>Tank</B><BR>\n<FONT color = 'blue'><B>Contains/Capacity</B> [] / []</FONT><BR>\nInterals Valve: <A href='?src=\ref[];stat=1'>[] Gas Flow</A><BR>\n\t<A href='?src=\ref[];cp=-50'>-</A> <A href='?src=\ref[];cp=-5'>-</A> <A href='?src=\ref[];cp=-1'>-</A> [] <A href='?src=\ref[];cp=1'>+</A> <A href='?src=\ref[];cp=5'>+</A> <A href='?src=\ref[];cp=50'>+</A><BR>\n<BR>\n<A href='?src=\ref[];mach_close=tank'>Close</A>\n</TT>", src.gas.tot_gas(), src.maximum, src, ((src.loc == user && user.internal == src) ? "Stop" : "Restore"), src, src, src, src.i_used, src, src, src, user)
user << browse(dat, "window=tank;size=600x300")
return

/obj/item/weapon/tank/Topic(href, href_list)
..()
if (usr.stat|| usr.restrained())
return
if (src.loc == usr)
usr.machine = src
if (href_list["cp"])
var/cp = text2num(href_list["cp"])
src.i_used += cp
src.i_used = min(max(round(src.i_used), 0), 10000)
if ((href_list["stat"] && src.loc == usr))
if (usr.internal != src && usr.wear_mask && (usr.wear_mask.flags & MASKINTERNALS))
usr.internal = src
usr << "\blue Now running on internals!"
else
if(usr.internal)
usr << "\blue No longer running on internals!"
usr.internal = null
src.add_fingerprint(usr)
for(var/mob/M in viewers(1, src.loc))
if ((M.client && M.machine == src))
src.attack_self(M)
else
usr << browse(null, "window=tank")
return
return

/obj/item/weapon/tank/proc/process(mob/M as mob, obj/substance/gas/G as obj)
var/amount = src.i_used
var/total = src.gas.tot_gas()
if (amount > total)
amount = total
if (total > 0)
G.transfer_from(src.gas, amount)
if (total == 0)
usr.internal = null
usr << "\red The gas of your tank ran out!"
return G

I added the last three lines before "return G", but it doesn't do anything. I think I messed  up. So, can any treasure code hunter help me? I've already determined that "usr.internal = null" removes your internals.
« Last Edit: June 21, 2009, 02:26:32 pm by Floirt »
Logged
Quote from: HellMOO
Fat Ratzo [to Floirt]: I got a package here goin' to Roy Poorman, out in the afterworld.  $120 when you make the delivery.  And hurry!
No, not commiting suicide, sorry.   ...Through that money is rather tempting...

Gantolandon

  • Bay Watcher
  • He has a fertile imagination.
    • View Profile
Re: Space Station 13
« Reply #1369 on: June 21, 2009, 02:33:28 pm »

Are you sure "usr" works in this context? Shouldn't you use "mob"?
Logged

Dr. Johbson

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1370 on: June 21, 2009, 02:33:54 pm »

Uhm, I cant get the game to run. The update didn't break it, either, I can't get my old back-up to work either. However, if someone can help me turn safe mode off, then it should be able to run, any idea on how I do this?
Logged

Gantolandon

  • Bay Watcher
  • He has a fertile imagination.
    • View Profile
Re: Space Station 13
« Reply #1371 on: June 21, 2009, 02:35:10 pm »

What do you mean by "safe mode"?
Logged

Gantolandon

  • Bay Watcher
  • He has a fertile imagination.
    • View Profile
Re: Space Station 13
« Reply #1372 on: June 21, 2009, 02:36:59 pm »

All right, found the answer on BYOND forums:

Quote
You probably renamed your project or the directory it's in. If the .dmb and the directory don't have the same mode, DS switches to ultrasafe mode for your protection.
Logged

Dr. Johbson

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1373 on: June 21, 2009, 02:40:59 pm »

All right, found the answer on BYOND forums:

Quote
You probably renamed your project or the directory it's in. If the .dmb and the directory don't have the same mode, DS switches to ultrasafe mode for your protection.

I've always ran it in ultra-safe mode, just because I don't know how to change it. But this time, it doesn't ask me for access for the last two files it needs, so thats why it's messing up.
Logged

Gantolandon

  • Bay Watcher
  • He has a fertile imagination.
    • View Profile
Re: Space Station 13
« Reply #1374 on: June 21, 2009, 02:43:46 pm »

Which files?
Logged

Dr. Johbson

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1375 on: June 21, 2009, 02:44:53 pm »

Which files?
My johbson.sav file and..The map, too, I believe. Also, I think I got it working, as well as learnt how to host the server without me being online.
Logged

Dr. Johbson

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1376 on: June 21, 2009, 02:46:56 pm »

Ok guys, the servers up! Yay!
Logged

Twiggie

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1377 on: June 21, 2009, 03:11:13 pm »

Well, thanks to our efforts me and jakkarra are now admins on the wiki!
Logged

Neonivek

  • Bay Watcher
    • View Profile
Re: Space Station 13
« Reply #1378 on: June 21, 2009, 04:02:02 pm »

OH MY GOODNESS!!! I am such a failure.

I guess the first sign that things were going wrong was when I started off ENTIRELY NAKED! and had to put on all my clothing from scratch.

I attempted to apply medical attention twice and failed (well once was successful but I had admin help) by accidently attacking them.

at least I took responsibility for my actions and willingly went to the brig

Though this odd doctor intentionally blinded me later. I think we got the wrong traitor somehow... Or the Eyedrops were an accident and intended for the traitor which he thought was me, actually apperantly this wasn't the case but I don't know the details. (Also I think the guard who was giving me clothes was killed in an explosion. He did save me as his body protected me from the blast.

This is the second time I've survived this mode while in the Red. It is my personal favorite victory!

Thank you for understanding my short commings. I kinda wanted to be a Janitor so that I wouldn't be a bother to anyone.
« Last Edit: June 21, 2009, 04:16:10 pm by Neonivek »
Logged

kholhaus

  • Bay Watcher
  • Pissed and Inspired
    • View Profile
Re: Space Station 13
« Reply #1379 on: June 21, 2009, 04:13:18 pm »

This kinda sucks...

I was banned because I blinded someone and stole another 'Officially braindead' person's ID. I wasn't traitor. Now, Cerberius Grey on the SAME server, blinded me and had the Dementia Serum in his blood stream. (Radium Mercury, all the poisonous shit except Chlorine.) Now, He blinded me for false accusation. I blinded this guy for asshole-ish reasons. I too was injected with Dementia Serum. If it's not acceptable then I'm sorry, it was a misunderstanding. Also, the 'brain dead' patient was Beorn Hastings. All I did was take his ID card, and he was sleeping there. He was fine until the plasma storm hit, which was what probably killed him.

I officially apologize and wish to be let back in.  :-X

(P.S. Dementia Serum makes you crazy, spouting random words like a brain-dead, and stumbling about. Although the stumbling about really only comes by on higher concentrations.)
« Last Edit: June 21, 2009, 04:15:12 pm by kholhaus »
Logged
Kholhaus has been inspired recently.
Kholhaus has lost a favorite to tragedy recently.
Pages: 1 ... 90 91 [92] 93 94 ... 950