Atroxide
Members-
Posts
491 -
Joined
-
Last visited
Content Type
Profiles
Forums
Gallery
Events
Blogs
Everything posted by Atroxide
-
Easier said then done. How would you know if something's a random? How would you know if it's your random? How would you solve it if it was a maze or box? Actually, the most common used autoing program atm has built in functions for doing it. EDIT: and btw i know this cause i use the program for AdventureQuest cause you can make it click a set bitmap which is really useful in AdventureQuest since its the same picture everytime, but i think its lame autoing in a MMO, but a single 1player game like AdventureQuest is ok i think cause your not changing an economy like in MMO's.
-
What happened to the days when you didn't have to talk and could still be legit? I forgot her name... hmm i could remember if I thought real hard, but back in RSC, she was a real high level, 110 or something, and had never spoken a word ingame, to anyone. I heard rumors that she didn't know english well, or just didn't want to talk. Well my friend, you are one lucky man. I've been playing for nearly 5 years now and I've seen more autoers then you can shake a stick at! I remember awhile ago, there was an EXTREMELY bad autoer outbreak. Mostly ess miners and flax pickers. I can barely find a flax seller nowadays Yeah, Jegax finally took out silent mouse ability to fix it ^.^. Silent Mouse allows 1 user to be able to control a mouse on each window, so it would allow 1 computer to have about 4-20 accounts depending on how good the computer was. but thank god for jegax finding out how to disable it. another thing that was the problem was that the auto'ers was actually hacking into the game. they had a hacked client which gave every object, item, npc, etc. a ID number. which then they could just program it to click a certain id and it would click it no matter the color, camera angel, etc. thank god they fixed that also ^.^.
-
Varrock or Yanille anvils? Question solved!
Atroxide replied to Bludragon124's topic in General Discussion
Well if your doing 1k loads of bars (for the l33t smithers) thats 4k steps you lose lol -
you recharge the seed, not buy a new 1.
-
great guide =D> i rarely read a whole guide :P
-
hmm, no idea why it does that. i dont know enough php to be able to know how to fix it or even why it does that.
-
Actually its not as simple as that. first off every 25 ess you pay the person 2k. also your airs after your done depends on your Rc level. So actually this is the formula for finding out the profit ((lngAmount * intAirsPerEss) * lngAirPrice) - ((lngEssPrice * lngAmount) + ((lngAmount / 25) * 2000)) lngAmount = Amount of ess lngAirsPerEss = Amount of ess you get per ess lngAirPrice = Price of airs lngEssPrice = price of ess so it would be faster entering 4 easy numbers and figuring it out. and posting the url now since you approve :)
-
Cool Usernames 680+ replies and 24k+ views
Atroxide replied to RSBDavid's topic in General Discussion
i got I Buy Cows and We Buy Drugs -
cause i know more php then i do javascript.
-
Alright I am done with the Php 1. I did it my self not my brother :) going to pm an admin to see if i can post link now
-
Yeah but since the user enters in the prices wouldn't that be different since they can never say "the prices are wrong!" (because he entered it and didn't get it from a set constant) thnx for the quick reply :D EDIT: thnx for re-opening who ever did. I am currently trying to get my bro to code it in javascript or php (which ever 1 he wants to do it in). Even if it cant be on the main site i want to do this cause maybe then you guys will allow a link to it since its not a exe. and if you still dont then i can atleast show my friends with no download needed :D an
-
May i ask what the tip.it Website calcs are coded in? I am guessing javascript but just wana make sure. maybe i can learn alil javascript and make it for the tip.it website :D
-
Sorry, i totally forgot i posted this :P It wont let me say '." and "exe" next to each other, thats why its not working. so take the "_" out in the file URL and if you still cant get it to work, dont say "It doesnt work", please say what happens and what you were doing while it didn't work. I am currently working on the next version. will have better help and about windows to help you. and will also have it where you can enter how much xp you want. and it will say how much cash you get from it. (so it will have both xp to profit and profit to xp) and for the person asking what programing language. I used Visual Basic 6
-
http://dvclan.org/ProfitCalc.php I got permission from an admin to post the link This is for the World 16 Air Company, If you don't know what it is then you wont understand it. I will add a discription of what the World 16 Air Company is later. [hide=Old Visual Basic Version] Well i have Private-Messaged 2 different admins to see if i can post the link to this calculator and I still haven't gotten a reply in a week. So I am going to go ahead and post it and if they want to remove it they can. I first made this program for some one else who made a topic asking for it. but i decided to make a new topic as not every one will read that topic. [Admin Edit: link removed] If you truly think you can hold a virus in 25KB then your an idiot. How ever, if you think there is a virus, then just scan it. No one is making you download it, and no one cares if you do or don't. If Admins want to remove it, go ahead. [hide=Source Code - Visual Basic 6] Option Explicit Private Sub btnCalc_Click() 'If not all boxes = filled, a popup will comeup If Me.txtAirPrice.Text = "" Or Me.txtAmount.Text = "" Or _ Me.txtEssPrice.Text = "" Or Me.txtLevel.Text = "" Then MsgBox ("Please fill out the rest of the Information needed") Else 'declares the textboxes as integers Dim lngLevel As Long lngLevel = Val(Me.txtLevel.Text) Dim lngAmount As Long lngAmount = Val(Me.txtAmount.Text) Dim intEssPrice As Long intEssPrice = Val(Me.txtEssPrice.Text) Dim lngAirPrice As Long lngAirPrice = Val(Me.txtAirPrice.Text) 'Select case to find how many Airs you make per Ess Dim intAirsPerEss As Integer Select Case lngLevel Case 0 To 10 intAirsPerEss = 1 Case 11 To 21 intAirsPerEss = 2 Case 22 To 32 intAirsPerEss = 3 Case 33 To 43 intAirsPerEss = 4 Case 44 To 54 intAirsPerEss = 5 Case 55 To 65 intAirsPerEss = 6 Case 66 To 76 intAirsPerEss = 7 Case 77 To 87 intAirsPerEss = 8 Case 88 To 98 intAirsPerEss = 9 Case 99 intAirsPerEss = 10 End Select 'Displays the results Me.lblProfit.Caption = ((lngAmount * intAirsPerEss) * lngAirPrice) - ((intEssPrice * lngAmount) + ((lngAmount / 25) * 2000)) Me.lblGained.Caption = lngAmount * 5 Me.lblTrade.Caption = lngAmount / 25 End If End Sub Private Sub btnHelp_Click() MsgBox ("Fill out the following text boxes and click calculate. Your profit, exp earned, and times you trade will appear") End Sub Private Sub btnAbout_Click() MsgBox ("World 16 Air Company Profit Calculator was created by TexasMd91 to help Rune crafters find their profit.") End Sub[/hide][/hide]
-
No, this isn't quite what they want. And could any chance you contact your brother to see if he can let me see the source code for the program? I am really interested in how to edit images and such.
-
Scan taken on 17 Mar 2007 10:54:45 (GMT) AntiVir Found nothing ArcaVir Found nothing Avast Found nothing AVG Antivirus Found nothing BitDefender Found nothing ClamAV Found nothing Dr.Web Found nothing F-Prot Antivirus Found nothing F-Secure Anti-Virus Found nothing Fortinet Found nothing Kaspersky Anti-Virus Found nothing NOD32 Found nothing Norman Virus Control Found nothing Panda Antivirus Found nothing VirusBuster Found nothing VBA32 Found nothing
-
make sure you declare all your variables and they are spelled correctly yeah i fixed it, it was because anything above 1000 in 1 textbox will close the program cause it wouldnt fit into a byte or something like that. i just had to change it to a long instead of a integer to fix it im just waitting from reply from an admin to see if i can say the url
-
i am trying ot get help on a Visual Basic forum to figure out why it gives me an error.
-
hmm im not sure if this is correct or not, but untill i find the price that they buy ess for and that they sell airs for then i can know if its right intAmount = Amount of ess intAirsPerEss = Amount of Airs you get per ess intAirPrice = Price for airs intEssPrice = Price for ess ((intAmount * intAirsPerEss) * intAirPrice) - ((intEssPrice * intAmount) + ((intAmount / 25) * 2000))
-
I know but i need to find the average price so i can test to see if it works for me and if theres any bugs here is the screenshot of it atm
-
What is the average price of normal ess and air runes?
-
umm im guessing not. it will be too confusing cause some players have higher Airs per Ess then others so then players will be wanting to do it to the person with highest rc And besides you make a profit at like 40 rc giving 2k per load.
-
~Backwards :(~ ~You give them 2,000gp (2kgp) and 25 NOTED regular rune essence and in return you recieve 25 un-noted rune essence. The reason it is not 28 for 28 is where would you put your money, noted essence, and crafted airs?~ ok thnx :) i am making a calculator for it to figure out how much profit you make for the crafters. Ill post a picture of it *1 sec*
-
and what does the other person give them in return?
-
Hello my question is about the World 16 Air Company. What exactly does the crafter give the runner, and what does the runner give the crafter? thnx :)
