Team BlueWater Game Online Tutorial's
Bine ati venit la Team-BlueWater!!Tutorial's 4 all Games!

Join the forum, it's quick and easy

Team BlueWater Game Online Tutorial's
Bine ati venit la Team-BlueWater!!Tutorial's 4 all Games!
Team BlueWater Game Online Tutorial's
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[RuneScape] Rezolvarea bugului de Duel / Bank

Go down

   [RuneScape] Rezolvarea bugului de Duel / Bank  Empty [RuneScape] Rezolvarea bugului de Duel / Bank

Post  Karma Sun Aug 14, 2011 6:03 am

Multi au acest bug din sursele dodian sau davias.
Cand inchideti banca duplicati itemele (cele pe care le castigati sau pierdeti).
Duplicarea va fi ceva de genul:
Code:
Player 1 = 100k
Player 2 = 100k
Deschideti client.java si cautati:
Code:
    if (objectID == 2213) { // Bank Booth
O sa vedeti ceva de genul:
Code:
if (objectID == 2213) { // Bank Booth
                skillX = objectX;
                skillY = objectY;
                NpcWanneTalk = 2;
            }
Inlocuiti cu:
Code:
if (objectID == 2213) { // Bank Booth
    if(duelFight == true){
sendMessage("Sorry you cant open you bank in duel!"); 
    }else{
                skillX = objectX;
                skillY = objectY;
                NpcWanneTalk = 2;
    }
            }
Acum cautati:
Code:
if ((objectID == 2213) || (objectID == 2214) || (objectID == 3045)
                    || (objectID == 5276) || (objectID == 6084)) {
Si va aparea ceva de genul:
Code:
if ((objectID == 2213) || (objectID == 2214) || (objectID == 3045)
                    || (objectID == 5276) || (objectID == 6084)) {
                skillX = objectX;
                skillY = objectY;
                WanneBank = 1;
            }
Inlocuiti cu ceea ce este mai jos si gata:
Code:
if ((objectID == 2213) || (objectID == 2214) || (objectID == 3045)
                    || (objectID == 5276) || (objectID == 6084)) {
    if(duelFight == true){
sendMessage("You may not use your bank when ur in duel"); 
    }
    else{
                skillX = objectX;
                skillY = objectY;
                WanneBank = 1;
    }
            }
Karma
Karma
Admin
Admin

Mesaje : 1092
Data de inscriere : 2011-04-22
Varsta : 33
Localizare : Craiova

https://team-bluewater.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum