Jump to content

Αντώνης

Members
  • Posts

    209
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Αντώνης

  1. Ade re pate na stisete kanan agona na kerdisete kana "pame stoixima"... zwadia

    me ton xodrelo sas, mou exei mia kilia na... mou vgene prin kati mines to peze megalos,

    tora p vgenoun sthn fora den exei p na kriftei... mono kai mono p vlepw thn fatsa t ton lipame, oti xeirotero gia kapion, na se lipate ;)...

     

    PANATHA FILE MIA ZWH, KLASH PARPANW APO TON OLYMPIAKO... MHN KOITAS TA PROTATHLIMATA... THN POIOTITA KOITA PODOSFAIROU KOITA...

     

    ASE tora p oloi einai GIA TO PEOS, poulimenoi oloi einai, den yparxh katholou kalo podosfero, opou emeis san fanatiki eixame idola, px egw ton nedvet, trezeg, del piero sthn juve.. palia...

    tous ithela pada sthn juve, alla siga siga... OLA GIA TA LEUTA...

     

    Ade as sas kanw thn xari na paw -4 for autoban.

     

    gamiete o admin

  2. 112454-565px-Olympiakos4.svg%5B1%5D.png

     

    Καλησπέρα σε όλους τους φίλους Ολυμπιακούς.

    Ανοίγω αυτό το τόπικ μιας και για άλλη μια χρονιά ποδοσφαιρικά/μπασκετικά/πετοσφαιρικά(?) ονόματα που προκαλούν δέος φτάνουν σε εμάς εν μέσω διαφόρων ΜΜΕ!

    Εδώ λοιπόν θα συζητάμε για τις μεταγραφές αλλά και γενικά για την αγαπημένη μας ομάδα.

    Θέματα που μπορούν να προκύψουν είναι:

    α)διοικητικά,β)μεταγραφικά,γ)αγώνες,δ)διάφορα θέματα που απασχολούν εμάς τους ΓΑΥΡΟΥΣ

     

    Κανόνες του Τόπικ

    1)Ναι μεν θα επιτρέψω στους παναθηναϊκούς ή οπαδούς άλλων κλαμπ να συμμετέχουν στις συζητήσεις αλλά προϋποθέτοντας πως θα δείξουν τη δέουσα σοβαρότητα.

    2)Θα πρότεινα σε κάποιον φανατικό οπαδό άλλης ομάδας να μην κοιτάξει καν εδώ.

    3)Δε θα συζητάμε τίποτα άσχετο με τον Ολυμπιακό.Υπάρχει το GOST για τέτοια.

    4)Η παραβίαση κάποιου κανόνα εκ των παραπάνω θα συντελέσει στο να σας κάνω de-pixel!

    5)Λαγοί,Χανούμια,Μπαόκια ----> ΜΑΚΡΙΑ :)

     


    Ερυθρόλευκα sites

     

     


     

    Ερυθρόλευκα Βίντεο

    Εδώ θα βάζω ολυμπιακά βίντεοζ, τραβηγμένα από μέλη του φόρουμ.


     

     

    Σύγγαυροι για το καλό μας, μην ανταποδίδετε στα σκόπιμα λόγια άλλων, απλά ενημερώστε εμένα ή την διεύθυνση.

     

    ~WeirdSituation

     

    GAMW THN MANA OSON EINAI GAVROI ........ BASTARDAKIA PELATES POULIMENE

     

  3. My First Sh1T ;pp

    bitmapb.png

     

    ;p

     

    
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Drawing.Imaging;
    using System.Drawing.Text;
    using System.Runtime.InteropServices;
    using System.Threading;
    
    namespace iPad
    {
        public partial class Main : Form
        {
            public Main()
            {
                InitializeComponent();
            }
    
            // Arguments
            private string EventText;
    
            // Create Picture Boxe's
            PictureBox _BarPictures1 = new PictureBox();
            PictureBox _BarPictures2 = new PictureBox();
            PictureBox _BarPictures3 = new PictureBox();
            PictureBox _BarPictures4 = new PictureBox();
            PictureBox _BarPictures5 = new PictureBox();
            PictureBox _LoadPicture1 = new PictureBox();
    
            // UP Menu Infos
            Panel UPPanel = new Panel();
            Panel MainPanel = new Panel();
            Label DateInfo = new Label();
            
            // TimeInfo Class Object
            TimeInfos TIObject = new TimeInfos();
    
            private void FixBarMenu()
            {
                
                // Link Picture Box With Image's
                _BarPictures1.Image = Properties.Resources.android;
                _BarPictures2.Image = Properties.Resources.browser;
                _BarPictures3.Image = Properties.Resources.notes;
                _BarPictures4.Image = Properties.Resources.maps;
                _BarPictures5.Image = Properties.Resources.phone;
    
                // Mouse Handler's
                _BarPictures1.MouseHover += new EventHandler(MouseHoverEvent);
                DateInfo.MouseHover += new EventHandler(LabelsMouseHover);
                
                // Auto Size Image's
                _BarPictures1.SizeMode = PictureBoxSizeMode.AutoSize;
                _BarPictures2.SizeMode = PictureBoxSizeMode.AutoSize;
                _BarPictures3.SizeMode = PictureBoxSizeMode.AutoSize;
                _BarPictures4.SizeMode = PictureBoxSizeMode.AutoSize;
                _BarPictures5.SizeMode = PictureBoxSizeMode.AutoSize;
    
                // Dock Type For Picture's
                _BarPictures1.Dock = DockStyle.Left;
                _BarPictures2.Dock = DockStyle.Left;
                _BarPictures3.Dock = DockStyle.Left;
                _BarPictures4.Dock = DockStyle.Left;
                _BarPictures5.Dock = DockStyle.Left;
    
                // Options For Bar Menu.
                DownPanel.BackColor = Color.FromArgb(60, Color.CadetBlue);
                DownPanel.AutoSize = false;
    
                DownPanel.Controls.Add(_BarPictures1);
                DownPanel.Controls.Add(_BarPictures2);
                DownPanel.Controls.Add(_BarPictures3);
                DownPanel.Controls.Add(_BarPictures4);
                DownPanel.Controls.Add(_BarPictures5);
            }
    
            private void MouseHoverEvent(object sender, EventArgs e)
            {
                //ToDo...
            }
    
            private void SetEvent(string Text)
            {
                EventText = Text;
            }
    
            private string GetEvent()
            {
                return EventText;
            }
            private void LabelsMouseHover(object sender, EventArgs e)
            {
                SetEvent("Δεν υπάρχει κανένα γεγονός για σήμερα.");
                TimeTip.Show(TIObject.Day() + "-" + TIObject.Month() + "-" + TIObject.Year() + "\n" + GetEvent(), DateInfo);
            }
    
            private void Main_Load(object sender, EventArgs e)
            {
                FixBarMenu();
                AddControls();
                UPBarStyles();
                MainPanelStyle();
    
            }
    
            private void ShowLoad()
            {
                Load lo = new Load();
                lo.ShowDialog();
            }
            
            private void MainPanelStyle()
            {
                MainPanel.Dock = DockStyle.Fill;
                MainPanel.BackColor = Color.FromArgb(10, Color.Black);
            }
    
            private void AddControls()
            {
                UPPanel.Controls.Add(DateInfo);
                
                this.Controls.Add(MainPanel);
                this.Controls.Add(UPPanel);
            }
    
            private void DateTick_Tick(object sender, EventArgs e)
            {
                ShowDateInfo();
            }
    
            private void UPBarStyles()
            {
    
                UPPanel.BackColor = Color.FromArgb(60, Color.CadetBlue);
                UPPanel.Dock = DockStyle.Top;
                UPPanel.Size = new Size(this.Size.Width, 19);
    
                UPPanel.Font = new System.Drawing.Font("Tahoma", 9, FontStyle.Bold);
                UPPanel.ForeColor = Color.BlanchedAlmond;
    
                DateInfo.BackColor = Color.Transparent;
                DateInfo.AutoSize = true;
                DateInfo.Text = "Loading Informations...";
                DateInfo.Dock = DockStyle.Right;
            }
            
            private void ShowDateInfo() {
                TimeInfos Info = new TimeInfos();
                DateInfo.Text = Info.Hours() + ":" + Info.Minutes() + ":" + Info.Seconds() ;
            }
    
            private void TimeTip_Popup(object sender, PopupEventArgs e) {
                TimeTip.BackColor = Color.FromArgb(80, Color.Red);
            }
    
        }
    
        class TimeInfos
        {
            DateTime _Date = DateTime.Now;
    
            public int Day() {
                return (_Date.Day);
            }
            public int Month() {
                return (_Date.Month);
            }
            public int Year() {
                return (_Date.Year);
            }
            public int Hours() {
                return (_Date.Hour);
            }
            public int Minutes() {
                return (_Date.Minute);
            }
            public int Seconds() {
                return (_Date.Second);
            }
            public string DayMonthYear() {
                return (_Date.Day + "-" + _Date.Month + "-" + _Date.Year);
            }
            public string HourMinsSecs() {
                return (_Date.Hour + "-" + _Date.Minute + "-" + _Date.Second);
            }
        }
    }
    

  4. Poso malakes eiste re, sxedon oloi lete klati koufa -dex - str... oti nane koukouroukou...

     

    So, if we talk about oly, because most of us play to make a gear and go oly...

     

    Dex -> Speed, AtkSpeed, Critical Power,Rate

    Tank need a bit speed, imagine oly vs Slow?? this not main reason to select dex,

    Paladin in Vanguard Buff, Weapon Focus, oly jewl, Angelic Icon, +Dex , make crazy critcals, a big damag plus high chance at criticals 900+atk speed with Angelic...

     

    Wit -> Cspeed, to make drain, cast debuff fast (-int is a problem too, low matk low chance some magic skills) anyway

     

    Str -> it give 100 patk about, yea 100 patk is nothing, but is not this main reason to sleect Str,

    Str give Attack power at skills

     

    Well a tank must increase those 2 and decrease Con, but this means week stun resist, but really tell me, can tank get a stun from other tank, from dwarf, from whatever who have stun?

     

    with passives, active - armor resist- oly jewl... there is very hard to get stun and remember, Paladin in angelic is killer machine in oly, he will take you down in 10 second if you are robe. ;ppp

     

    i forgot and pet ;p wich make 400+ dmg... vs nuker is ftw  ;ppp

     

    anyway i suggest

    +3Dex -3 Con ( i sugges 3 because is about same with 4, you will take about 4 speed, and with Dex+4 5, so no big diference)

    +3Str -3 Con ( to make big dmg with judje skill)

    +4 Wit -4 Int ( very simple to cast your debufs, like shackling...)

     

     

  5. everything in internet is 100 corupted, depent how much.. some are really at 100%, and some others 20-30 corupt...

     

    anout hopzone, count down started months ago, belive me the logic ppls know about hopzone, what and how...

    things for hopzone is just tragic ...

     

     

    nvm it, personaly i stoped play online servers month ago, but i remember and before quite totaly from l2 i dont use this site because is a really corupt and most server in top10-20-30 are sh1ts of 50-200ppl for pvp servers, with really corupted staff.. anyway

     

     

  6. ti einai auto to pragma me to twiter re, oti pio mapa yparxh alla oloi oi dimosiografoi-gnostoi exoun tw, den lene exw fb.. epidi to fb einai poloi koino kai poli mapa.. as exei kapia ekatomiria,

    logo autou tou pragmatos me ta pola fake profile oso paei ginete kai pio anaksiopisto...

    tha m peis kai tweeter den boroun fake profiles, boroun alla pios asxolite me twe

     

    pados h alitheia einai oti fb me twe einai h dysh me anatolh...

     

    oti pio mapa to twee,...

     

    anyway exei xalasi asxima o kosmos gmcta:/ vgneoun tora diafora onomata, dhmosiografoi, o prothipourgos kiolas kai lene exw weeter folow me na deite ta sxolia mou..

     

    h merikoi re, tragoudistes px, se 1 lepto tha aneuw stage, kathe lepto grafoun ti kanoun, les kai eixame mia skasila...

     

    ace, exw ckalwci ackima me autes tis vlakies, eki p bori na eixes kapia x ektimisi se kapion, otan ton akous kanw auto kai auto sto tweet h fb , kseneroneis...

     

    prosopika exw fb , kap 30 filous opou tous kserw olous, den exw oute 1 oti nane , kapion gnosto apo kapio online game kserw go kai teties bourdes ;pp

     

    rrr eimai kakos  ee;ppp

     

    ps: sas protino na min exete poli steni sxesh me tetia site, genika me to net, min dinete kai sto 100% ta stoixeia sas, kai na apofevgete na vazete fotos apo poli prosopikes stigmes ( den enw tpt pnro ), gt ama deite ti fatsa sas pthena min lete , e ? pos? ti ? ma ? afou ?... hehe

  7. alo pio gamato apo to photoshop?

     

    You have been reported to fbi for inculding photoshop.

    You can pay for your free.

    hehehe ti lee re to atomo...

     

    filos mathe na to xirizese... egw den asxoloume me tetia programata alla photoshop = photoshop

  8. O aetos pethainei ston aera - Notis sfakianakis.. to exw afto

    alla thimame to akouga radiofono to exei pei kai o mitropanos

     

    kai den boro na to vrw re gmto me tpt...

    kai to lege x10 fores kalitera :/

     

    *nomizw dld oti htan o mitropanos, pados oxi notis...

     

    any help

     

    FACK! ELEOS ;PPP POS TA BERDEPSA

     

    AUTO EINAI ...

     

    oti nane omos, alo titlo exei eleos ....

  9. i hear that from l2ex owner that data centers allow only 1 attack

     

    on 2nd take server down forever...

     

    thats a litle stiuped, bcause someone can attack all servers in dc, so  take down all? fail...

     

    e ok some companys allow 2-3 ..

  10. File Finito exw fygei prin 3 xronia, benw kamia fora na kanw tin plaka mou...

    pados to parakseno einai exw 2-3 meres p benw syxna .. TCcc.. kanw mlkies o pstis kai asxoloume me malakes..

     

    gt edw mesa 1/5 einai sta alitheia malakas, einai anorima sketa ... kathome tora kai akouw tis paparies tou kathe mikrou edw mesa...

     

    as psithoun ligw kai meta na ekferoun mia sosti gnwmh...

     

    File min klineis etc ta topic, eleftheria logou exoume ... ade kalh synexeia kai respect ligo....

  11. [HOT* Greek Only - 18+]

     

    εγώ είμαι καραγκιόζης, σκατοζωάδι και μαλάκας μετά...

     

    Ελα ρε γατακι, to kseroume oti eisai ... ala afto p mathame einai oti to exeis kai kamari

     

    :))) failz0r

     

    ONTOPIC:

    egw pisteuw oti kati karagiozides san ton WeirdSituation einai kati anapira pou borei na einai  15 16 xornon poso einai  18 ... alla mialo koukoutsi... ama orimasi aftos ... kade me pm :))))

  12. PS: Apo pote mia erotisi einai spam?

     

    Βλέπεις το button " LOG OUT " εκεί πάνω στην μέση?

    Λοιπόν πατα το αν δεν σου αρέσει.

    Και μην βρίζεις.

     

    Ti lee re gataki, ti tha kana xwris esena... tha to vriska pote???

  13. Ti les re karagiozi? katalaveneis ti les?

    Askopa h oxi OFF TOPIC einai skatozwadi

     

    Eixa mia skasila an me vlepeis kala h oxi... den tha kimithw to vradi....

     

    Ade tora o kathe malakas edw mesa epidi exei privs klidoni topics...

×
×
  • Create New...