Jump to content

Recommended Posts

Posted

In 1.2.5 i made a GUI to change settings in my tileEntity. It worked 100% fine saving and recalling the data when i closed/reopened the gui and restart the game. In 1.3.1 it open just fine, i can change the settings, and they keep as long as i do not restart the game. Which i think has too do with the tileEntity not getting the varables client side. I've set up a packet system but can't really tell if its working. I'm going to keep toying with it till i get it working but just in case i don't can someone check out my code and see what is wrong.

Edit: toyed with it more found the data is making its way to the client but all messed up. However the GUI itself doesn't seem to be saving the data to the server side/keeps vars on client. Which i think i can fix with a packet to the server. Though there is now an issue with the packet data getting all messed up. instead of the 8 separate ints getting assigned to there own varables there merging together.

Pic of GUI

 

  Reveal hidden contents

 

 

Code is on gitHub easier to read than to post here gitHub

Posted

Not going to dig through all of your code, so linking to specific files would help.

But I dont get the 'merging together' part, seems to me like you're fucking something up if things are getting merged together.

its not difficult to transfer something over the network and pick it up on the other side.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted
  On 8/15/2012 at 11:13 AM, LexManos said:

Not going to dig through all of your code, so linking to specific files would help.

But I dont get the 'merging together' part, seems to me like you're fucking something up if things are getting merged together.

its not difficult to transfer something over the network and pick it up on the other side.

found the issue with the vars merging, end up too do something with writing the int to dataStream as a double. which i don't understand why it cause the variables to start to merge together but telling to write as an int fix that issue. Also by merge i meant there should be 8 vars for example 37xA 15yA 100zA  48xT 45yT 113zT 13W 10C. what i was getting was 3715100xA 0yA 1001527zA 0W 0C.

 

to fix the not saving on restart what i think i need to do is send a packet with the new info too the server. However, i don't know how to send a packet too the local server.

 

Here is the code just involving the tileEntity and gui

https://github.com/DarkGuardsman/GSM-Guardsman/blob/master/1.3.1/common/GSM/barrack/TileEntityBarrack.java

https://github.com/DarkGuardsman/GSM-Guardsman/blob/master/1.3.1/common/GSM/Network/PacketManager.java

changing line 78 on the above fixed the merge issue

https://github.com/DarkGuardsman/GSM-Guardsman/blob/master/1.3.1/minecraft/GSMClient/GuiBarrackSettings.java

Posted

Im pretty sure FML/ML expose a sendPacket fucntion.

As for sending as Double and reading as a int, well no shit that wont work u.u

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted
  On 8/15/2012 at 12:01 PM, LexManos said:

Im pretty sure FML/ML expose a sendPacket fucntion.

As for sending as Double and reading as a int, well no shit that wont work u.u

Just do a cast.

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Posted

Right.. thats retarded.

When you write a double to the stream

It write 8 bytes

When you read a int from the stream

you read 4 bytes

see an issue here?

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted
  On 8/15/2012 at 12:05 PM, LexManos said:

Right.. thats retarded.

When you write a double to the stream

It write 8 bytes

When you read a int from the stream

you read 4 bytes

see an issue here?

at least you can be nice about my f' up, it was a copying error from a tut and i forgot to code it to write ints. anyways back to the original issue how to i get the packet to the local server. I'll try the sendPacket it just seem to be too simple seeing as i had to set up a packetManager.class just to send packets to the client.

 

Edit:

is it me or maybe sendPacket is missing/ not added. I'll  keep looking for something to send a packet too the server but tbh i'm not 100% sure what i'm looking for.

 public static void sendPacket(Packet packet) {
        // TODO
//        FMLClientHandler.instance().sendPacket(packet);
    }

Posted
  On 8/15/2012 at 4:24 PM, calclavia said:

Try using PacketManager.sendTileEntityPacket from UE...

 

Also, you can read doubles and then cast the read doubles into int after reading so it doesn't mess the stream data up.

i am using a recoded version of your code for my packetHandler. only issue is i can't figure out how to send the settings packet to the server to be saved. I've got sending to the player done just fine and gui gets the old settings. However if i go into the gui and change all the vars in the textboxes, it only keep the new setting as long as game stays on. Which means i need to update the server's TileEntity with the new settings.

Posted
  On 8/15/2012 at 9:22 PM, DarkGuardsman said:

  Quote

Try using PacketManager.sendTileEntityPacket from UE...

 

Also, you can read doubles and then cast the read doubles into int after reading so it doesn't mess the stream data up.

i am using a recoded version of your code for my packetHandler. only issue is i can't figure out how to send the settings packet to the server to be saved. I've got sending to the player done just fine and gui gets the old settings. However if i go into the gui and change all the vars in the textboxes, it only keep the new setting as long as game stays on. Which means i need to update the server's TileEntity with the new settings.

 

I'll look into it and tell you if I got any insight on it.

Posted
  On 8/16/2012 at 12:01 AM, calclavia said:

  Quote

  Quote

Try using PacketManager.sendTileEntityPacket from UE...

 

Also, you can read doubles and then cast the read doubles into int after reading so it doesn't mess the stream data up.

i am using a recoded version of your code for my packetHandler. only issue is i can't figure out how to send the settings packet to the server to be saved. I've got sending to the player done just fine and gui gets the old settings. However if i go into the gui and change all the vars in the textboxes, it only keep the new setting as long as game stays on. Which means i need to update the server's TileEntity with the new settings.

 

I'll look into it and tell you if I got any insight on it.

ty without being able to update the Barrack settings the block doesn't work past looking good. Other than that my Guardsman are rendering now :), well except for weapons but that an old error that crops up every update.

 

Edit: i see the modloader.sendPacket now does something instead of being empty. Anyways is the onPackData version for the server side?

Edit2: Fixed it turns out i was not getting the right world so when the packet got there it didn't know which world to send it too.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Short Term Loans Online: A Reliable Source of Fast Cash   If you are experiencing financial difficulties, you don't have to worry about this challenge. This is the quickest and best method for handling financial catastrophes. You can pick short term loans online without reluctance, and you can apply for the payday loan you want online and have it the same day without any issues. With two to four weeks to repay the loan, you may often borrow between $100 and $1000 without having to offer any collateral.   As implied by the title, those with bad credit histories—defaults, arrears, foreclosure, late or missed payments, judgments against you, insolvency or IVA, etc.—are welcome to apply for online short term loans without having to go through any challenging procedures. Interest rates are a bit high in comparison to other loans. A thorough internet search can be used to determine the greatest rate for a financed loan.   You don't have to waste your precious time searching the internet for short term funding payday loans. In just a few minutes, you can apply for the finance you desire by completing a brief online application. The lender will approve the loan once he has verified that you have provided accurate information on this brief form. This loan is carefully deposited into your bank account in the least amount of time. You can utilize the money in a number of ways without running into any problems. Usually, the money can be used to settle debts like credit card balances, overdue bank overdrafts, tuition or school fees for children, energy bills, housing costs, and more.   Loans Lucre makes it simple to apply for short term loans online, so there's no need to drive across town. Additionally, you won't have to wait weeks for a response from us. Additionally, having bad credit shouldn't be a deal-breaker. We evaluate your entire financial history rather than just your FICO score. We approve many debtors who had been rejected by banks.   Once you are approved, Loans Lucre puts your online installment loans directly into your bank account, giving you instant access to your funds. The repayment plan is broken down into simple, reasonably priced monthly installments. Loans Lucre also rejects rollovers. Instead, we help borrowers get back on track when they encounter difficulties with the repayment process. Borrowers who regularly make their payments on time are eligible for lower annual percentage rates (APRs) on their subsequent these loans. That is truly win-win!   You will be communicating with the lender whether you apply for online personal loans through a cash advance broker or directly from the lender. The cost and duration of the transaction will be increased by any third parties you deal with through the direct lender. This will lead to a faulty perception of the "instant approval" of your payday loan, in addition to raising the cost of your transaction. When asking for a payday loan, it is therefore essential that you work with a trustworthy direct lender; a lender with a solid online reputation and satisfied clients is a wise choice.   You can apply for a short term loans online through internet platforms in addition to conventional lenders. A quicker and more convenient application process is frequently provided by these platforms. In the end, it is feasible to get a $500 loan with low credit or no credit at all, but it will need effort and careful evaluation of your financial possibilities. The lender's requirements will always determine approval, so be careful to give accurate information and look into several lenders to determine which one best suit your needs. https://loanslucre.com/  
    • Apply For Fast Cash Loans Online Today To Get Money Right Away   Do you have to deal with your money issues right away? You don't need to go anywhere because you can get fast cash loans online with just a computer and an internet connection. This suggests that you don't need to waste any time applying for these loans. All you have to do is fill out the form accurately and submit it to the lender online. They will check it and determine whether to approve the loan within the specified time frame. The money is moved to your bank account shortly after approval.   The same-day financing loan facility offers the most beneficial cash assistance in quantities ranging from $100 to $1000, with a flexible payback period of 2-4 weeks from the date of acceptance. You can use the borrowed funds to cover your child's tuition or school fees, small vacation expenses, past credit card payments, laundry costs, minor house repairs, your mother's checkups, and other emergencies.   To be qualified for same day funding loans, you must meet specific conditions regardless of your credit score—fair or low. A valid proof of domicile and proof of residence for the last 12 months, a current bank account with an SSN, being employed permanently with a monthly wage of at least $1000, and being at least eighteen years of age are prerequisites. If you satisfy the qualifications, you can apply for same-day payday loans directly without undergoing a credit check if you have bankruptcy, CCJs, IVAs, foreclosure, arrears, or defaults. As a result, getting a loan is fairly easy in the current credit market.   You must complete an application with information about your bank account and job in order to apply for a fast cash loan online from a physical payday lender. You also need to provide the lender with postdated checks that will be deposited on the scheduled repayment date. In return, you get paid right away.   Applicants can apply for same day payday loans at any time, from the comfort of their homes, eliminating the need to travel across town to a payday loan outlet. However, online payday lenders do not frequently provide same-day loans. Instead, payouts are made straight into borrowers' bank accounts via the Automated Clearing House (ACH) system; processing for this method takes at least one business day.   You must think about if you can pay back the loan in full within the allotted time because same day payday loans may have payback periods as little as one week or ten days. If you are unable to pay the full amount due, the lender might accept a token payment from you. The remaining sum will be restructured as a rollover, which is a new loan with fresh interest and administrative costs and the same short payback period. After a few rollovers, a significant number of little payday loans accumulate to the point that debtors still owe more than they originally borrowed, even after making consistent payments for months or years.   You should be ready to submit the required paperwork and supporting proof when applying for a payday loans online same day with bad credit. Usually, lenders will evaluate your present financial state, work status, and loan-repayment capacity. Many lenders specialize in bad credit loans and are willing to take on the risk of lending to those with poor credit, despite the difficulties presented by a low credit score. This implies that you are not automatically denied a loan because of poor credit or no credit at all. https://nuevacash.com/
    • I have removed stevekunglib and it is still crashing again https://pastebin.com/9vE8pji0
    • It looks like an issue with stevekunglib or a mod requiring it
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.