User Posts

guammastermind671 Da RL Lurker at FAKKU
I keep noticing that newly uploaded doujins come out with no picture and with the thumbs option in the page category. the link to the problem is listed below:

Coach (Bosshi) "Thumbs" link

A few people and I have found a way around this, but hope this gets fixed soon for the rest of the Fakku population. I've linked the fixed link to read the doujin.(props go to Reros, and a few others! :D)

Coach (Bosshi) Fixed link

Put this url link right next to the url and it should fix the problem.
/page=1#page=1
guammastermind671 Da RL Lurker at FAKKU
Narovka wrote...
You have custom textures that either aren't being loaded or are missing. This can result from having too many mods active at any one time, there might be more textures being loaded into memory than your computer can handle. Sometimes texture files can also be corrupted or mishaps may happen on the user's end.

I recommend reinstalling your mod textures, you'll only need to drag the textures folder out of the mods, nothing else. If the problem still persists consider reducing the amount of mods you have active while playing your game.


Did what you said and it worked! :3

Found out that it was the RTS settler mod that was screwing everything up
guammastermind671 Da RL Lurker at FAKKU
Spoiler:
Forum Image: http://i1085.photobucket.com/albums/j440/guammastermind671/2013-01-07_00006_zpsc4649481.jpg


been having this happen to the mod guns, scenery, clothing and others that i can mention...

anyone been having this type of problem before? and do you know how to fix it?
guammastermind671 Da RL Lurker at FAKKU
Like the title says everyone I have this issue with fallout new Vegas on modding issues. When I add new weapons to the game it turns white and black when I use it in first person and third person view. Anyone ever encountered a problem like this?
guammastermind671 Da RL Lurker at FAKKU
wut da fuck?
guammastermind671 Da RL Lurker at FAKKU
Tegumi wrote...
To be honest this didn't really need the review of a 'java guru', seems like a simple syntax error to me.


thats the thing i couldn't figure out what I did wrong from what the error told me. Call me stupid, but I tried almost everything...
guammastermind671 Da RL Lurker at FAKKU
Fruid wrote...
The compiler was doing it's thing until it reached the end of the file trying to find some more stuff.

You're missing a third and forth closing curly brace.

Spoiler:

import java.util.Scanner;
import java.util.Random;

public class skydive {


public static void main (String args[])
{


Random randomGenerator = new Random();


System.out.println("First Jump : ") ;



for (int i = 1; i <=5; i++){

int randomInt = randomGenerator.nextInt(38);




int jumps=randomInt;
switch (jumps){
case 1: System.out.println("A,Unipod");continue;

case 2: System.out.println("B, Stairstep Diamond");continue;

case 3: System.out.println("C, Murhpy Flake");continue;

case 4: System.out.println("D, Yuan");continue;

case 5: System.out.println("E, Meeker");continue;

case 6: System.out.println("F, Open Accordian");continue;

case 7: System.out.println("G, Cataccord");continue;

case 8: System.out.println("H, Bow");continue;

case 9: System.out.println("J, Donut");continue;

case 10: System.out.println("K, Hook");continue;

case 11: System.out.println("L, Adder");continue;

case 12: System.out.println("M, Star");continue;

case 13: System.out.println("N, Crank");continue;

case 14: System.out.println("O, Satellite");continue;

case 15: System.out.println("P, Sideboy");continue;

case 16: System.out.println("Q, Phalanx");continue;

case 17: System.out.println("1, Snowflake");continue;

case 18: System.out.println("2, Sideboy Donut");continue;

case 19: System.out.println("3, Side Flake Opal");continue;

case 20: System.out.println("4, Monopod");continue;

case 21: System.out.println("5, Opal");continue;

case 22: System.out.println("6, Sardian");continue;

case 23: System.out.println("7, Sidebuddies");continue;

case 24: System.out.println("8, Canadian Tee");continue;

case 25: System.out.println("9, Cat+Accordian");continue;

case 26: System.out.println("10, Diamond");continue;

case 27: System.out.println("11, Photon, Crank");continue;

case 28: System.out.println("12, Bundy");continue;

case 29: System.out.println("13, Hammer");continue;

case 30: System.out.println("14, Bipole");continue;

case 31: System.out.println("15, Caterpillar,");continue;

case 32: System.out.println("16, Compressed Accordian");continue;

case 33: System.out.println("17, Danish Tree");continue;

case 34: System.out.println("18, Zircon");continue;

case 35: System.out.println("19, Ritz");continue;

case 36: System.out.println("20, Piver");continue;

case 37: System.out.println("21, Zig Zag");continue;

case 38: System.out.println("22, Tee");continue;


}}}}


Also, ask yourself if you're doing the seed on your random number generator correctly.


Wow! couldnt believe I couldnt see that...thanks man!
guammastermind671 Da RL Lurker at FAKKU
Been a long time since I've posted, but just want to see if I did something wrong here: I'm doing an assignment on writing a program for a skydive competition. I did it already, but I keep getting this message which I'll list below.

Spoiler:
--------------------Configuration: Skydive2 - JDK version 1.7.0_07 - --------------------
C:\Users\Nicolas computer\Documents\JCreator LE\MyProjects\Skydive Competition\Skydive2\src\Skydive2.java:105: error: reached end of file while parsing
}}
^
1 error

Process completed.


my program will be listed below this line, so that you can see whats wrong with the program. I tried everything not to screw it up, but i keep ending up in a dead end. If you guys see my error please post about it? I would appreciate the help from a java guru! :)

Spoiler:

import java.util.Scanner;
import java.util.Random;

public class skydive {


public static void main (String args[])
{


Random randomGenerator = new Random();


System.out.println("First Jump : ") ;



for (int i = 1; i <=5; i++){

int randomInt = randomGenerator.nextInt(38);




int jumps=randomInt;
switch (jumps){
case 1: System.out.println("A,Unipod");continue;

case 2: System.out.println("B, Stairstep Diamond");continue;

case 3: System.out.println("C, Murhpy Flake");continue;

case 4: System.out.println("D, Yuan");continue;

case 5: System.out.println("E, Meeker");continue;

case 6: System.out.println("F, Open Accordian");continue;

case 7: System.out.println("G, Cataccord");continue;

case 8: System.out.println("H, Bow");continue;

case 9: System.out.println("J, Donut");continue;

case 10: System.out.println("K, Hook");continue;

case 11: System.out.println("L, Adder");continue;

case 12: System.out.println("M, Star");continue;

case 13: System.out.println("N, Crank");continue;

case 14: System.out.println("O, Satellite");continue;

case 15: System.out.println("P, Sideboy");continue;

case 16: System.out.println("Q, Phalanx");continue;

case 17: System.out.println("1, Snowflake");continue;

case 18: System.out.println("2, Sideboy Donut");continue;

case 19: System.out.println("3, Side Flake Opal");continue;

case 20: System.out.println("4, Monopod");continue;

case 21: System.out.println("5, Opal");continue;

case 22: System.out.println("6, Sardian");continue;

case 23: System.out.println("7, Sidebuddies");continue;

case 24: System.out.println("8, Canadian Tee");continue;

case 25: System.out.println("9, Cat+Accordian");continue;

case 26: System.out.println("10, Diamond");continue;

case 27: System.out.println("11, Photon, Crank");continue;

case 28: System.out.println("12, Bundy");continue;

case 29: System.out.println("13, Hammer");continue;

case 30: System.out.println("14, Bipole");continue;

case 31: System.out.println("15, Caterpillar,");continue;

case 32: System.out.println("16, Compressed Accordian");continue;

case 33: System.out.println("17, Danish Tree");continue;

case 34: System.out.println("18, Zircon");continue;

case 35: System.out.println("19, Ritz");continue;

case 36: System.out.println("20, Piver");continue;

case 37: System.out.println("21, Zig Zag");continue;

case 38: System.out.println("22, Tee");continue;


}}


guammastermind671 Da RL Lurker at FAKKU
im left handed...fml
guammastermind671 Da RL Lurker at FAKKU
Manga nothing dc or marvel
guammastermind671 Da RL Lurker at FAKKU
lets hope they dont go out of stock again
guammastermind671 Da RL Lurker at FAKKU
Ducauv wrote...
There's no reason your computer should be running Skyrim with the graphic settings set to minimum.

Raise your graphics settings to the point where you feel satisfied with the framerate and appearance.

Open Skyrim.ini found in Skyrim's root directory.

Change these variables:

bEnableLogging=0
bEnableTrace=0
bLoadDebugInformation=0

to

bEnableLogging=1
bEnableTrace=1
bLoadDebugInformation=1

After two or three crashes, post the results from the logs found in the logs folder, which is accessed from Skyrim's root directory.

Make sure your sound card drivers are up to date, then, access the Sound Devices menu from the Control Panel. In the playback tab, right click on your default audio device and select Properties, select the Advanced tab on the new screen and select 24 bit, 44100Hz (Studio Quality) from the drop down menu. (Likely not the cause of your problem but doing this may prevent other problems that could arise in the future.)

Read this guide, even though it's hosted on Nvidia's website the information pertains to anyone who owns the game, lots of great tips for getting some extra performance and fixing crashes. As the reduction in performance stopped or reduced the crashes, there may be something in the .ini files that could be the cause or solution to your problems, this guide touches on the variables found in Skyrim's .ini files.

It's always a good idea to do some general maintenance on your computer as well, this way if you can't fix the crashes you can at least speed up boot and load times. There's also a variable in SkyrimPrefs.ini titled fAutosaveEveryXMins, this controls the amount of time between each auto-save, it's defaulted to 15 minutes but you can shorten this so you don't have to worry about remembering to save so often.

Here's a few more fixes for anything in general, maybe one will solve your issue:

http://crashfixes.com/fixing-skyrim-crashes-freezes-errors-steam-crash-no-sound-lags-choppy-framerates/


will update on what I can find, but atm I cant seem to find the:

bEnableLogging=0
bEnableTrace=0
bLoadDebugInformation=0

at the moment.. :'(, But i will look more into the links you posted! :D
guammastermind671 Da RL Lurker at FAKKU
NyC420 wrote...
guammastermind671 wrote...
NyC420 wrote...
try changing the video setting to the lowest setting to see what happen.. r ya getting any errors windows?


your advice helped me on keeping it from crashing, but I couldnt use any of the skimpy mods to its full potential. :'(


Did u use the game b4 started crashing? check if yer video card needs an update, also check if yer pc meets the min req. do you really n need the mods?.


yes because I'm a person with inner desires :D
guammastermind671 Da RL Lurker at FAKKU
Can never have a dream Pc, because things get updated every 1-3 years, which is a pain in the ass.. :'(
guammastermind671 Da RL Lurker at FAKKU
My Boss has Windows 7 ultimate from a friend of his who works at Microsoft. If you want, I can ask him to give me a copy of a clean ISO file from his friend. His friedn tests out the new software for bugs, so he has access to unlimited resources for ISo and OeM's.
guammastermind671 Da RL Lurker at FAKKU
attach a machine gun on its back and we'll be on our next step to building zoids.
guammastermind671 Da RL Lurker at FAKKU
I'll stick with my old school IOS..I don't have the drive to go Android...
guammastermind671 Da RL Lurker at FAKKU
NyC420 wrote...
try changing the video setting to the lowest setting to see what happen.. r ya getting any errors windows?


your advice helped me on keeping it from crashing, but I couldnt use any of the skimpy mods to its full potential. :'(
guammastermind671 Da RL Lurker at FAKKU
Im too poor to afford atm sorry...