37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
|
import React from "react";
|
||
|
|
||
|
import theme from "../config/themes";
|
||
|
|
||
|
import { Text, View, Image } from "react-native";
|
||
|
|
||
|
export default class HelpScreen extends React.Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<View style={{ flex: 1, backgroundColor: theme.background }}>
|
||
|
<Image source={{ uri: theme.logo }} style={{ width: 112, height: 28, marginTop: 16 }} />
|
||
|
<Text>irc.n0xy.net +6697 (ssl only) #f0ck
|
||
|
More information: n0xy.net
|
||
|
|
||
|
IRC Rules
|
||
|
Constitution:
|
||
|
|
||
|
§ 1 The dignity of the IRCd is inviolable.
|
||
|
§ 2 The distribution of Child Pornography is strictly prohibited in any of our networks and will lead to an immediate ban.
|
||
|
§ 3 Do not attack users in this network in any way, shape, or form.
|
||
|
§ 4 Do not transmit any personal/financial information without permission.
|
||
|
§ 5 Do not share any malware on this network.
|
||
|
f0ck specific rules:
|
||
|
|
||
|
Animal cruelty is forbidden and will lead to an immediate ban
|
||
|
how the f0ck to f0ck, you ask?
|
||
|
f0ck will f0ck any media link posted in the channel ending with: jpg|gif|png|webm|mp3|mp4|ogg|flac
|
||
|
|
||
|
If you don't want f0ck to f0ck it put !ignore behind your link. Example: https://retard-journal.com/stupidshit.png !ignore
|
||
|
|
||
|
f0ck will only f0ck media links with the maximum size of 80MB
|
||
|
</Text>
|
||
|
</View>
|
||
|
);
|
||
|
}
|
||
|
}
|