Re: SCP:CB Trailer Help
Posted: Sun Dec 23, 2012 7:02 am
Here you go, added a console command to change the noclip speed
http://www.mediafire.com/?wpheki6wt85op2f
http://www.mediafire.com/?wpheki6wt85op2f
Great! I was able to get it started. Now before I change anything noclip would work fine, but afterwards I would enter "noclipspeed [50]" and It would not allow me to move at all. When I put any number between "[x]" it almost seems to stop me from moving, except sprinting always goes, but not any other type of movement. Is it a glitch? Or am I doing something incorrect? I apologize for thisMonocleBios wrote:Here you go, added a console command to change the noclip speed
http://www.mediafire.com/?wpheki6wt85op2f
Ohh! Haha. Okay then. Let's see here. *Inputs command*MonocleBios wrote:Sorry, I was using the format Regalis was using for his console commands in the comment. You don't put in the square brackets. (It would be "noclipspeed 50")
Code: Select all
;In global declarations
Global noclipspeed# = 1.0
;In console case selection
Case "noclipspeed"
StrTemp$ = Lower(Right(ConsoleInput, Len(ConsoleInput) - Instr(ConsoleInput, " ")))
noclipspeed = Float(StrTemp)
CreateConsoleMsg("Noclip speed set to " + StrTemp)
;In "noclip on" else statement
Sprint = noclipspeed
Ah, that makes sense then. Thank again though! I definitely can use the command code you gave me earlier, thank you so much! I will send him this and see if he can make one for the current version, that way the trailer looks more up to date. Thank again!MonocleBios wrote:Unfortunately I had to use a previous version(Had old class d models/animations) to make the console mod since Regalis only posted the source code for version 0.6.2.
If you need the code to run on the current version, you'll have to arrange something with Regalis.
This is the code if you wish to give it to him, although he could probably make a more stable version himself
Code: Select all
;In global declarations Global noclipspeed# = 1.0 ;In console case selection Case "noclipspeed" StrTemp$ = Lower(Right(ConsoleInput, Len(ConsoleInput) - Instr(ConsoleInput, " "))) noclipspeed = Float(StrTemp) CreateConsoleMsg("Noclip speed set to " + StrTemp) ;In "noclip on" else statement Sprint = noclipspeed