LifeFuel what is your fight song ?

owly

owly

Banned
-
Joined
Oct 26, 2018
Posts
2,349
Online
0
after seeing that video of dan cilley being threatened by 2 white knight cucks, in shiny soy armor,
I got an idea for a simple app to boost up the incel fighting spirit.

as the app activates it loop plays your favorite fight song, pumping you up with extra energy to break through said soylents face. :

on android studio :

1 start a new project
2 add a raw names directory in the res folder and paste fighto.mp3 in there
3 paste this code in the Main.java file (don't delete the 1st line (package line))

Code:
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}

enable dev mode with debug
run the app with your phone connected

use the app when you need to, simply activate it with one click and you are ready to go (that's why the code is in the onCreate methode)

here is my current fight song :


what's yours ?
 
Cuyen

Cuyen

Everything hurts and I'm dying
★★★★★
Joined
Aug 13, 2018
Posts
38,897
Online
38d 51m
My fight song is Scarface theme
 
Deleted member 6470

Deleted member 6470

Self-banned
-
Joined
May 4, 2018
Posts
9,931
Online
118d 52m
Grotesque

Grotesque

38 Year Old Virgin.
-
Joined
Nov 8, 2017
Posts
7,842
Online
11d 3h 8m
NEETAndTidy

NEETAndTidy

STRIKE FIRST. STRIKE HARD. NO MERCY. COBRA KAIcel
-
Joined
May 20, 2018
Posts
15,936
Online
0
Michael15651

Michael15651

Destined Virgin.
★★★★★
Joined
Nov 4, 2018
Posts
24,158
Online
1d 34m
I’m pretty sure there’s a song that’s actually called ”This is my fight song” but it’s by a foid
 
ldargoblin

ldargoblin

Admiral
★★★★★
Joined
Nov 1, 2018
Posts
2,971
Online
55d 21h 27m
Nirvana - Tourette's
 
Insomniac

Insomniac

ϟϟ A U T I S M ϟϟ
-
Joined
Oct 4, 2018
Posts
36,123
Online
47m
ihaveno1

ihaveno1

Visionary
-
Joined
Nov 11, 2018
Posts
37,722
Online
89d 11h 38m
Michael15651 said:
I’m pretty sure there’s a song that’s actually called ”This is my fight song” but it’s by a foid
yeah there is and it's pure garbage
 
Remyx

Remyx

Erase your mind
-
Joined
Mar 30, 2018
Posts
3,054
Online
15m
 
Last edited:
Deleted member 15752

Deleted member 15752

Mogged from Fairbanks to Vladivostok
-
Joined
Nov 13, 2018
Posts
22,145
Online
17d 20h 43m
Kirito3

Kirito3

Edgelord
Joined
Mar 3, 2018
Posts
2,010
Online
2d 22h 59m
I“pumped up kicks” by foster the people. Almost every other answer in this thread is shit.
owly said:
after seeing that video of dan cilley being threatened by 2 white knight cucks, in shiny soy armor,
I got an idea for a simple app to boost up the incel fighting spirit.

as the app activates it loop plays your favorite fight song, pumping you up with extra energy to break through said soylents face. :

on android studio :

1 start a new project
2 add a raw names directory in the res folder and paste fighto.mp3 in there
3 paste this code in the Main.java file (don't delete the 1st line (package line))

Code:
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}

enable dev mode with debug
run the app with your phone connected

use the app when you need to, simply activate it with one click and you are ready to go (that's why the code is in the onCreate methode)

here is my current fight song :


what's yours ?
Sasuke is based though. Blackpilled chad.
 
Smallframecel

Smallframecel

blackpill power to see past the lies and deception
-
Joined
Nov 23, 2018
Posts
1,441
Online
8m
keep fighting
 
Nomad

Nomad

Banned
-
Joined
Dec 20, 2018
Posts
19
Online
0
This one is really good
This is also really good and it starts from 1:20 sort of makes you feel like being a Ukrainian gangster running about with a hammer and a ski mask
 
quinn24

quinn24

Stay asleep
★★★★★
Joined
Aug 15, 2018
Posts
8,770
Online
70d 16h 1m
owly

owly

Banned
-
Joined
Oct 26, 2018
Posts
2,349
Online
0
I modified the code to lock the screen orientation, so the song doesn't restart when you flip the phone

Code:
import android.content.pm.ActivityInfo;
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}
 
Romello Gaghan 2

Romello Gaghan 2

No Descriptor
★★★★★
Joined
Aug 6, 2018
Posts
9,891
Online
27d 19h 11m
owly

owly

Banned
-
Joined
Oct 26, 2018
Posts
2,349
Online
0
I added some code to start the app with maximum volume for extra beat up the white knight effect:

Code:
import android.content.pm.ActivityInfo;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    // var to access volume jutsu :
    private AudioManager mAudioManager;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
// set volume to maximum after app loads :
        mAudioManager = (AudioManager) getSystemService(AUDIO_SERVICE);
        mAudioManager.setStreamVolume(
                AudioManager.STREAM_MUSIC, // Stream type
                15, // Index
                AudioManager.FLAG_SHOW_UI // Flags
        );
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}

hadouuuuken !
 
Last edited:

Similar threads