Thread: plzz minor DEV 2.7 HELP !!!

Results 1 to 3 of 3
  1. #1 plzz minor DEV 2.7 HELP !!! 
    Registered Member Akeid's Avatar
    Join Date
    May 2009
    Posts
    911
    Thanks given
    22
    Thanks received
    15
    Rep Power
    37
    hi guy i recently started to use the 2.7 dev source by killamaze , i looks different than any other source i worked with , so i need some minor help.
    thanks to knova thease problems were solved ty major repp, but now i have some new ones>>


    thanks alot if you can help you helped me know the server alittle



    also i was looking through the teleports , and where i wanan replace the name of the teleport on ancients , it doesnt work

    for example i wana change the name paddawa teleport to Edge , and the discription below it







    THANKS FOR UR HELP EVERY ONE, IM NOT USED TO THIS SOURCE , I THOUGHT IT WAS SIMILAR TO DEVOLUTION 7.0 , THIS WILL BE A LEARNING EXPERIENCE FOR ME , I WILL GET TO KNOW WHERE ALL OF THOSE PROBLEMS ARE , AND HOW TO CHANGE IT .
    Reply With Quote  
     

  2. #2  
    Registered Member
    Knova's Avatar
    Join Date
    Aug 2007
    Age
    33
    Posts
    677
    Thanks given
    0
    Thanks received
    9
    Rep Power
    344
    completed quest = server/players/quest/ questhandler.java
    find:
    Code:
    		public int q1, q2, q3, q4, q5, q6, q7, q8, q9, q10,
    			 q11, q12, q13, q14, q15, q16, q17, q18, tqp = 0;
    change the 0 at the end to 15


    starter is in client.java look for "welcome to
    you will see:
    Code:
    		if (QH().q1 == 0) {
    			QH().q1 = 15;
    			CAM().showInterface(3559);
    			apset = true;
    			CAM().sendFrame99(1);
    			playerEnergy = 100;
    			addItem(995, 5000000);
    			addItem(386, 10000);
    			addItem(1321, 1);
    			addItem(841, 1);
    			addItem(882, 1000);
    			addItem(556, 1000);
    			addItem(558, 1000);
    			addItem(562, 1000);
    			CAM().sendMessage("Welcome to "+Constants.SERVER_NAME+", Currently in beta testing.");
    		} else {
    			CAM().sendMessage("Welcome back to "+Constants.SERVER_NAME+", We are currently in beta testing.");
    		}
    change to:
    Code:
    		if (QH().q1 == 15) {
    			CAM().showInterface(3559);
    			apset = true;
    			CAM().sendFrame99(1);
    			playerEnergy = 100;
    			//add items here
    			CAM().sendMessage("Welcome to "+Constants.SERVER_NAME+", Currently in beta testing.");
    		} else {
    			CAM().sendMessage("Welcome back to "+Constants.SERVER_NAME+", We are currently in beta testing.");
    		}
    just change the items stuff there.

    under
    Code:
     public void initialize() {
    find
    Code:
    if (ancients == 1) {
    u will see:
    Code:
    		if (ancients == 1) {
    			setSidebarInterface(6, 12855); // magic tab (ancient = 12855);
    		}
    		if (ancients == 0) {
    			setSidebarInterface(6, 1151); // magic tab (ancient = 12855);
    		}
    make it look like this:
    Code:
    			setSidebarInterface(6, 12855); // magic tab (ancient = 12855);
    so deleted hole thing and replace with that.

    running:

    boolean process: (client.java)

    under it add
    Code:
    if (playerEnergy < 10) {
    			playerEnergy = 100;
    }
    this is not the best way to fix it but good enough for a new programmer

    that should fix everything lol
    I AM KITE! Hope you like my programming!
    Reply With Quote  
     

  3. #3  
    Registered Member Akeid's Avatar
    Join Date
    May 2009
    Posts
    911
    Thanks given
    22
    Thanks received
    15
    Rep Power
    37
    wow omg than kyou so much reppeddd
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •