-
Total de itens
1900 -
Registro em
-
Última visita
-
Dias Ganhos
13
Tudo que Beeki postou
-
Marcelo, entra em contato com o Ranieri, pra ver se ele hospeda uma release da Harveu no VPS dele para podermos usar como Demo, seria ótimo.
-
Minha sugestão é, que continue do jeito que está, sem legendas está ótimo.
-
mais e de ser nukado pelo lucas ortiz de 13 anos com sprut windows manja ou nem? quando foi isso? pergunta pra ele que eu nao me recordo, mais ele ficou um dia todo rindo que voce nao conseguia usar a sua net de 2 cabra de valocidade sahusahusah é um amigo meu muito toxico e cusao mais gente boa! sahsuahusa Assim que você me falou isso fui verificar os logs do meu firewall, e não vi nada de mais lá, inclusive não fico sem net faz uns dois meses. Você realmente tem certeza que um sprut iria derrubar minha net?
-
mais e de ser nukado pelo lucas ortiz de 13 anos com sprut windows manja ou nem? quando foi isso?
-
pq eu manjo das putaria, c sabe né
-
Af, ta pra nascer um nego pra invadir uma maquina minha e fazer isso aí.
-
é pouco pro teu mapa
-
aumenta a galinha, quero ver como ela fica grandona
-
[Encerrado] liblua5.2-dev / Compilação Ajuda!
tópico respondeu ao djwalisson de Beeki em Tópicos Sem Resposta
apt-get update && apt-get purge libboost*1.46* && apt-get install libboost-all-dev apt-get install libncurses5-dev cd /usr/local/src wget http://www.lua.org/ftp/lua-5.1.4.tar.gz tar -xzvf lua* cd lua* make linux make install -
Eu acho que sou o único do fórum que deve dinheiro pro Alex
-
Interessante o projeto, vai ter continuidade?
-
pedido Globalevents que use o talkactions a cada 48 hrs (configurado)
pergunta respondeu ao AdilsonHacker de Beeki em Scripts
Prefiro fazer manualmente, /shutdown 5, e fazer um backup da database.- 17 respostas
-
- talkactions
- globalevents
-
(e 1 mais)
Tags:
-
poketibia Função onSpawn(cid) para TFS 0.3.6
tópico respondeu ao lSainty de Beeki em Linguagens de Programação
ótimo conteúdo, tem como explicar/exemplificar de como usa-lo? -
Eu acho que, você pode tentar usar os comando dessa shell pra compilar seu OTServ, mas pelo menos teste cheque se o shell funciona na sua maquina.
-
Testa aí meu querido. @@ -0,0 +1,183 @@ +#!/usr/bin/env bash +## Usage instructions: +## yum/apt-get install git +## git clone https://github.com/otland/forgottenserver +## cd forgottenserver +## bash ncompile.sh +## It is important to run with 'bash' and not 'sh' or as an executable(./file) +## because the script is multi-platform so I did not include the shebang +## and old shell does not support a few things I did here + +## Script by dominique120 +## Few edits and fixes by fallen(decltype) +## Idea from the compile.sh script that was packed with some TFS 0.4 revs. +## Made for TFS 1.0 +## If you plan of editing try to keep the structure and conventions +## Line endings must be LF only, not CRLF. + +## TODO: +## Add other operating systems (MacOSX, Arch Linux) +## Test the multicore build section +## Add other optimizations to the make process (maybe use ccache?) +## Make it prettier? + +## Get CPU core count +## Still testing +cpuCores=$(nproc) +## make processes to be spawned. +coreBuild=$((cpuCores + 1)) + +## Colors +greenText=$(tput setab 0; tput setaf 2) +redText=$(tput setab 0; tput setaf 1) +blueText=$(tput setab 0; tput setaf 6) +yellowText=$(tput setab 0; tput setaf 3) +none=$(tput sgr0) +### +### Functions to simplify stuff +### + +debianDeps() { + apt-get -y install cmake build-essential liblua5.2-dev \ + libgmp3-dev libmysqlclient-dev libboost-system-dev +} + +fedoraDeps() { + yum -y install cmake gcc-c++ boost-devel \ + gmp-devel community-mysql-devel lua-devel +} + +centDeps() { + yum -y install cmake gcc-c++ boost-devel \ + gmp-devel mysql-devel lua-devel +} + +bsdDeps() { + cd /usr/ports/shells/bash && make install clean BATCH=yes + cd /usr/ports/devel/git && make install clean BATCH=yes + cd /usr/ports/devel/cmake && make install clean BATCH=yes + cd /usr/ports/lang/gcc47 && make install clean BATCH=yes + cd /usr/ports/lang/luajit && make install clean BATCH=yes + cd /usr/ports/devel/boost-libs && make install clean BATCH=yes + cd /usr/ports/math/gmp && make install clean BATCH=yes + cd /usr/ports/databases/mysql-connector-c && make install clean BATCH=yes +} + +libInstall() { + echo "Libraries and Build Tools... Installed" +} + +bsdBuild() { + echo "Building on FreeBSD" + mkdir build && cd build + CXX=g++47 cmake .. + echo "Build on $cpuCores threads with $coreBuild processes? (experimental but loads faster) y or n " + read ans1_4 + if [[ $ans1_4 = "y" ]]; then + echo -e $greenText"Building on $cpuCores threads with $coreBuild processes."$none + make -j $coreBuild + elif [[ $ans1_4 = "n" ]]; then + echo -e $blueText"Building on a single thread."$none + make + else + echo -e $redText"Answer y or n"$none + fi +} + +genBuild() { + echo "Building..." + mkdir build && cd build + cmake .. + echo "Build on $cpuCores threads with $coreBuild processes? (experimental but loads faster) y or n " + read ans1_4 + if [[ $ans1_4 = "y" ]]; then + echo -e $greenText"Building on $cpuCores threads with $coreBuild processes."$none + make -j $coreBuild + elif [[ $ans1_4 = "n" ]]; then + echo -e $blueText"Building on a single thread."$none + make + else + echo -e $redText"Answer y or n"$none + fi +} +# Unused clean, I'm leaving it here in case we might need it in the future. +clean() { + mkdir objs/ + mv *.o objs/ + echo "There might be a few leftover files." +} + +### +### Script starts here +### + +#check if root +if [[ $EUID -ne 0 ]]; then + echo "You must be root to use this script, press enter to exit." + read end + exit 1 +fi +#OS dependencies and other stuff +echo "Chose your Operating System. {Supported OS: Debian, Ubuntu, Fedora, FreeBSD."$yellowText" Not recommended->"$none " CentOS or Scientific Linux" +#Note for SL6 and CentOS, look below. +read ans1 + +if [[ $ans1 = "Fedora" ]]; then + echo -n "Should the script install dependencies? y or n: " + read ans1_1 + if [[ $ans1_1 = "y" ]]; then + fedoraDeps + elif [[ $ans1_1 = "n" ]]; then + : + else + echo "Answer 'y' or 'n' " + fi +elif [[ $ans1 = "CentOS" ]] || [[ $ans1 = "Scientific Linux" ]]; then + echo -n "Should the script install dependencies? y or n: " $redText"TFS 1.0 developers discourage the use of these distributions because they have outdated packages."$none $blueText"*NOTE that versions of cmake and boost installed in this process are old, they should be installed manually by adding repositories or compiling them manually."$none + read ans1_1 + if [[ $ans1_1 = "y" ]]; then + centDeps + elif [[ $ans1_1 = "n" ]]; then + : + else + echo "Answer 'y' or 'n' " + fi +elif [[ $ans1 = "Debian" ]] || [[ $ans1 = "Ubuntu" ]]; then + echo -n "Should the script install dependencies? y or n: " + read ans1_1 + if [[ $ans1_1 = "y" ]]; then + debianDeps + elif [[ $ans1_1 = "n" ]]; then + : + else + echo "Answer 'y' or 'n' " + fi +elif [[ $ans1 = "FreeBSD" ]]; then + echo -n "Should the script install dependencies? y or n: " + read ans1_1 + if [[ $ans1_1 = "y" ]]; then + bsdDeps + elif [[ $ans1_1 = "n" ]]; then + : + else + echo "Answer 'y' or 'n' " + fi + else + echo "Pick a valid OS" + fi + +#Compiling here +echo -n "Are we on FreeBSD? y or n: " +read ans1_2 + if [[ $ans1_2 = "y" ]]; then + bsdbuild + elif [[ $ans1_2 = "n" ]]; then + genBuild + else + echo "Answer y or n" + fi + +## Notes +# 1: SL6 and CentOS latest version of CMAKE is 2.6.4 as of 1/7/2014(us), thus incompatible with TFS 1.0 building process. It must be manually added, tutorial below: +# https://github.com/jackywei/HOW-TO-BUILD-HHVM-WiKi/wiki/Build-&-Install-CMake-2.8.10.2-in-CentOS6.3 +# And look at issue #391 for more details about old packages in SL6 and CentOS
-
lf eu assisti o filme do seu avatar, a mina mata geral
-
Abraços, volte sempre. Alessandro, seja bem vinda.
-
Compilando e Rodando OTserv em Linux Ubuntu 12.04
tópico respondeu ao Beeki de Beeki em Tutoriais de Infraestrutura
link ta offline e eu perdi o arquivo.- 24 respostas
-
- compilar otserv
- linux
- (e 6 mais)
-
-
Sem mais, Atenciosamente Beeki
-
eu só acredito se postar foto beijando, k
-
Beeki passou por aqui.
-
Obrigado, mas os créditos não são meus, e sim, do Wallace Ex-Administrador do DBZ Union (Sim são os arquivos do DBZ Union).
- 132 respostas
-
- venha conferir !
- otserv
-
(e 1 mais)
Tags:
-
bando de pokemon, euehueh
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.