View Poll Results: Do you think Ghost should be guns admin?

Voters
21. You may not vote on this poll
  • Yes!

    14 66.67%
  • No!

    4 19.05%
  • Not sure

    3 14.29%
Page 2 of 5 FirstFirst 1 2 3 4 ... LastLast
Results 11 to 20 of 44

Thread: #MakeBabyGhostGunsAdmin

  1. #11
    Big Cheese 3.X's Avatar
    Join Date
    Jun 2013
    Location
    Texas
    Posts
    1,638
    Quote Originally Posted by Kamiroo Wolf View Post
    I talk to recurvez all the time he helps me choose all my guns .-.
    Tell him to start balancing, trust me he wont talk to you again. I went thro that.
    Live your life, enjoy it while it lasts. Don't give it up when you are down, you are a light like the stars in a sky.

  2. #12
    Happier, gratefully. Kamiroo Wolf's Avatar
    Join Date
    Jul 2013
    Location
    Art Tower
    Posts
    2,660
    .-.
    "'An old friend of ours dared me to try and play God...' Mak craned his neck, the advisors and guardsmen in his wake suddenly alert at their charge's blatant discontent.

    He stood with a confidence we had never known him to possess, the bright orange trim of his ivory sleeves dangling so far from the scrawny arms folded behind his back that we thought the robe adorning his body might blow away completely in the winds that whipped around us.

    'Little did they know I was born for the role.'"

  3. #13
    Banned
    Join Date
    Jun 2013
    Location
    bbz, tachi, and gz
    Posts
    568
    no, if bghost can script and knows how the weapon stats work then oh hell yes

  4. #14
    Happier, gratefully. Kamiroo Wolf's Avatar
    Join Date
    Jul 2013
    Location
    Art Tower
    Posts
    2,660
    I believe he does.
    "'An old friend of ours dared me to try and play God...' Mak craned his neck, the advisors and guardsmen in his wake suddenly alert at their charge's blatant discontent.

    He stood with a confidence we had never known him to possess, the bright orange trim of his ivory sleeves dangling so far from the scrawny arms folded behind his back that we thought the robe adorning his body might blow away completely in the winds that whipped around us.

    'Little did they know I was born for the role.'"

  5. #15
    Big Cheese 3.X's Avatar
    Join Date
    Jun 2013
    Location
    Texas
    Posts
    1,638
    Quote Originally Posted by Ghettoicedtea View Post
    no, if bghost can script and knows how the weapon stats work then oh hell yes
    Lol ikr
    Live your life, enjoy it while it lasts. Don't give it up when you are down, you are a light like the stars in a sky.

  6. #16

    Red face Interesting....

    Hmm. Very interesting. I actually know how to script, but never used GS2 before. Looking at the syntax resembles like Java scripting. I'll take up some "lessons" on GS2 scripting. Thankfully, it doesn't have to be from scratch. Just use the programming knowledge and transfer it over to GS2.

    Quote Originally Posted by 3.X View Post
    If remember right he was doing is own game, therefor he probebly already knows how to script. Anyways I would love to see him as GA

    If there is some sort of portfolio or proof of game programming, I do have an FPS game that is being worked on.
    http://www.era-go.com/forum/showthre...ng-an-FPS-game




    I do have some small code I'll share for extra proof, though it's not really good to share too much code that puts together a video game. This is not GS2 script.
    Code:
    //Aiming
    if (Input.GetButton("Fire2") && !Reloading && canAim == true && Time.timeScale > 0 && Screen.lockCursor == true)
    {
    	if (CrouchObject.GetComponent(CrouchingScript).isCrouching == true)
    	Recoil = RecoilCrouchAim;
    	else
    	Recoil = RecoilAimingIn;
    	
    	reticle.renderer.enabled = false;
    	if (changedToAimIn == false && changedToAimOut == true)
    		{
    		mouseAimX.sensitivityX = mouseAimX.sensitivityX * aimReduction;
        	mouseAimY.sensitivityY = mouseAimY.sensitivityY * aimReduction;
        	changedToAimOut = false;
        	changedToAimIn = true;
    		}
        switchTimer = 1;
        
        if (gunCamScript)
        {
    		if (gunCamScript.cameraFOV > zoomAmount)
    		{ 
    		gunCamScript.cameraFOV -= 350 * Time.deltaTime;
    		}
    		if (gunCamScript.cameraFOV <= zoomAmount)
    		{
    		gunCamScript.cameraFOV = zoomAmount;
    		}
    	}
    	if (mainCamScript)
    	{
    		if (mainCamScript.cameraFOV > zoomAmount)
    		{ 
    		mainCamScript.cameraFOV -= 350 * Time.deltaTime;
    		}
    		if (mainCamScript.cameraFOV <= zoomAmount)
    		{
    		mainCamScript.cameraFOV = zoomAmount;
    		}
    	}
    Code:
    else if (crouchingObject.GetComponent(CrouchingScript).isCrouching == true) // if player is crouching
     		{
    	 		if ( canSlide)
    	 		{
    	 		PlayerAnimSec.animation.CrossFade("idle animation", SprintFadeSpeed);
    	 		}
     		PlayerMotor.movement.maxForwardSpeed = GroundCrouchSpeed;
     		PlayerMotor.movement.maxSidewaysSpeed = GroundCrouchSpeed;
     		PlayerMotor.movement.maxBackwardsSpeed = GroundCrouchSpeed/2.5;
     		PlayerMotor.movement.maxGroundAcceleration = GroundCrouchAccel;
     		}
     		else
     		{
     		PlayerMotor.movement.maxForwardSpeed = WalkingSpeed;
     		PlayerMotor.movement.maxSidewaysSpeed = WalkingSpeed;
     		PlayerMotor.movement.maxBackwardsSpeed = WalkingSpeed/2;
     		PlayerMotor.movement.maxGroundAcceleration = GroundAccel;
     		}
     		if (crouchingObject.GetComponent(CrouchingScript).isCrouching == true && Time.timeScale > 0)
     		{
     		SprintScript.GetComponent(StaminaBarScript).stamina += CrouchRecovery * Time.deltaTime;
     		}	
     		else if (Time.timeScale > 0)
     		{
     		SprintScript.GetComponent(StaminaBarScript).stamina += WalkRecoverery * Time.deltaTime;
     		}
    So yes. It's not that I have absolutely no knowledge in programming. What I provided isn't enough to get the GA position. If you're willing to help me with GS2 scripting, that would be greatly appreciated. In the end, I need to learn some GS2 scripting on my own afterwards. Do not expect me to be a GA that quickly.

    I'll jump into GS2 scripting this week. So let's see how far we can get from here.
    BabyGhost

    Currently in college. Retired from era.

    Guns Reviewer

  7. #17
    Happier, gratefully. Kamiroo Wolf's Avatar
    Join Date
    Jul 2013
    Location
    Art Tower
    Posts
    2,660
    Cool. GL babyghost
    "'An old friend of ours dared me to try and play God...' Mak craned his neck, the advisors and guardsmen in his wake suddenly alert at their charge's blatant discontent.

    He stood with a confidence we had never known him to possess, the bright orange trim of his ivory sleeves dangling so far from the scrawny arms folded behind his back that we thought the robe adorning his body might blow away completely in the winds that whipped around us.

    'Little did they know I was born for the role.'"

  8. #18
    Big Cheese Lord Greg's Avatar
    Join Date
    Jun 2013
    Location
    England
    Posts
    2,600
    Quote Originally Posted by Kamiroo Wolf View Post
    I talk to recurvez all the time he helps me choose all my guns .-.
    Maybe to you but to most other people, he won't help. He doesn't appear to do any useful work. Baby ghost is the right person for the job. If the scripting is an issue, keep sam as well to do that and skins while leave ghost to balance.

  9. #19
    Happier, gratefully. Kamiroo Wolf's Avatar
    Join Date
    Jul 2013
    Location
    Art Tower
    Posts
    2,660
    If he didn't do work wouldn't he have been fired already?
    "'An old friend of ours dared me to try and play God...' Mak craned his neck, the advisors and guardsmen in his wake suddenly alert at their charge's blatant discontent.

    He stood with a confidence we had never known him to possess, the bright orange trim of his ivory sleeves dangling so far from the scrawny arms folded behind his back that we thought the robe adorning his body might blow away completely in the winds that whipped around us.

    'Little did they know I was born for the role.'"

  10. #20
    Big Cheese Lord Greg's Avatar
    Join Date
    Jun 2013
    Location
    England
    Posts
    2,600
    Quote Originally Posted by Kamiroo Wolf View Post
    If he didn't do work wouldn't he have been fired already?
    Nope, some admins last for a very long time without working.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •