private void UserProfile_Load(object sender, EventArgs e)
        {
            // Güncel Money değeri için

            AccountWebService.accountPortTypeClient soap = new AccountWebService.accountPortTypeClient();

            string money = soap.updatedFetchSessionData(Customer.Nick, Customer.Token);

            if (money != "0")
            {
                Customer.Money = money;
            }

            // Güncel Money değeri için
        }
예제 #2
0
        private void timer1_Tick(object sender, EventArgs e)
        {
            ticks++;



            AccountWebService.accountPortTypeClient soap = new AccountWebService.accountPortTypeClient();

            string money = soap.updatedFetchSessionData(Customer.Nick, Customer.Token);


            if (money != "0")
            {
                Customer.Money = money;
            }

            moneyLabel.Text = Customer.Money + " AIO Money";
        }