Jump to content

Solzhenitsyn

Members
  • Posts

    181
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by Solzhenitsyn

  1. I don't know why you guys are being dicks to him. OP acknowledges the fact that he knows little, and wants to learn, so answer his question. Derp.

     

    Your router assigns a private IP to each of your devices. Your ISP assigns your router an IP.

     

    I drew you a beaaaooooteeefool diagram.

     

    btsENG3.png

     

    @Trapman Edit: To answer your question,

    This is what it looks like when device 1 is routing traffic through a proxy server and device 2 is not.

    7npLxVN.png

     

    Your router is assigned a public IP by your ISP. In the case where you are using a proxy server, that proxy server also has a public IP. In this scenario, if devices 1 and 2 ping the same server, that server will see the public IP addresses of the proxy server from device 1, and that proxy server sees your public IP. That server will see the public IP address of your network when you ping it using device 2.

    • Like 3
  2. cool thanks that helps a bit

    the beautiful thing about a forum is you can ignore topics that are going to trigger you. I suggest in the future you ignore forum topics that will cause you to get triggered I worry about your mental health smile.png

     

    If you are okay with failing a course which appears to be an introduction to C/C++ from a community college, I will complete assignment for 10m (code + questions). Let me know.

  3. Think about your problem more.

     

    You say:

     

     

    for example you don't want the script to constantly be looting in areas such as the chicken farm because there is much loot to be had there.

     

    OK. So think about the conditions which should be true before you begin looting.

     

    Time based is almost certainty not how you should approach the problem, but it's easy enough to implement (pseudocode):

    long nextScheduledTime
    
    func scheduler(someDuration, currentSystemTime):
        return someDuration + currentSystemTime
    
    onStart:
        nextScheduledTime = scheduler(args...)
    
    onLoop:
        if currentSystemTime > nextScheduledTime:
           nextScheduledTime = scheduler(args...)
           <suite>
    
  4. 1) Instantiate mmtd

    http://osbot.org/api/org/osbot/rs07/input/mouse/MiniMapTileDestination.html

    MinimapTileDestination mmtd = new MiniMapTileDestination(org.osbot.rs07.Bot bot, Position position)
    // ctor
    

    2) Get data from mmtd

    // Method 1: use bounding box
    mmtd.getBoundingBox()
    
    // Method 2: use point
    mmtd.getPoint()
    

    4) Execute move instruction - think, what do I do with a point or rectangle?

    5) Execute action instruction

    6) Conditional sleep

    7) Perform nullity and existential checks to determine what you should do next

     

    That should be more than enough to get started. When I was starting, I didn't understand why spoonfeeding is terrible. It is terrible. 

     

  5. Pro Pop... facep.gif

     

    @@The King

    1) Issue move command using minimap tile destination

    2) Execute action

     

    Conditional:

    3a) Issue move command to next minimap tile, if minimap tile exists.

    3b) Otherwise, Issue move command to original position to cancel animation.

  6. The clouds are probably npcs.

    The missile particals are called "Projectiles" ^^

     

    Clouds don't seem to have any entity type, even if they do hurt you in-game (their behavior is identical to the Zulrah toxic clouds, excepting the damage type/values). 

     

    (Client debug -> entity hover debug shows nothing, and various scanner options also return nothing. They also have no upper-left tooltip when moused over.)

  7. in the making of one right now, but why 74? isnt 72 for mlm upper floor?

    anyhow how much are u intessted in paying (account is less then 1 month old btw)

     

    I'm not doing MLM. :-)

     

    I offer you 4.5m. If the account has membership time, I offer you an additional 210k per remaining day (assumes bond price of 3m).  If the account has 40 attack, I offer you an additional 500k. If the account has 60 attack, I offer you an additional 1.5m.

     

    Because the account is young, I reduce my above offers by 12.5%. I will still pay 210k/day of membership.

     

    I expect counter offers.

  8. I offer you 8m, and I am happy to to hear a counter offer.

     

    The marginal utility of levels past 74 is minimal for what I intend to do with these accounts (especially considering the time required to level past 80), so I might not be willing to pay as much as you would like.

  9. Biohazard

    Underground Pass (76 Agility)

    Regicide (Up to Zulrah unlock)

     

    Nature Spirit

    Fairytale Part 1

    Fairytale Part 2 (Up to Fairyring unlock)

     

    Contact me on Skype: PnuxSucks

     

    Must be a reputable user one or more of the following communities, with preferred communities listed on top:

    • OSBot
    • Sythe
    • D2JSP
    • D3Scene

    Please post here, or message me with a quote.

     

    If things go well, I will need these quests done on ~10 more  accounts.

  10. Sounds like you are doing MTA mazes. Did I guess right? 

     

    When I was doing work in instanced areas, you can use the location of fixed objects as anchors. You can also use them to identify which instance you are in.

     

    I would use minimap tiles for all navigation, since the webwalker sometimes does strange things in instances. 

  11. just because your version is more simplistic, it doesn't necessarily mean it's better. doge.png

    the checks are also objective, you pronounce it tomato, i pronounce it tomatoe, etc

    i'd rather not spam the player's game chat with "you do not have enough inventory space for that".

     

    When a shorter piece of code does the same thing, I think you should prefer it. In any case, his solution is objectively better, if only by a small margin -

     

    Withdraw n:

    1) first iteration - set x to n.

    2) all subsequent iterations, less final iteration, withdraw n.

    3) final iteration - set n to m, withdraw m.

     

    Withdraw all:

    1) all iterations - withdraw all

     

     

     

    xp wayste ur losin tix bro

     

    wut fukery is dis thred gnome.png

     

    Edit: Since I'm a faggot who loves to show off:

     

    http://imgur.com/3PjIDjS

     

    Write yourself a package which handles common inventory and banking interactions and it will serve you well in virtually every script that you write.

  12. Having trouble starting Animal Magnestism.

    [INFO][Bot #1][09/28 06:38:17 PM]: [DEBUG][BANKING] Attempting to get items from bank. Attempt 0
    [INFO][Bot #1][09/28 06:38:20 PM]: [DEBUG][BANKING] Attempting to withdraw item: Ghostspeak amulet
    [INFO][Bot #1][09/28 06:38:20 PM]: [DEBUG][BANKING] Failed to find the searched item: Ghostspeak amulet
    [INFO][Bot #1][09/28 06:38:21 PM]: [DEBUG][BANKING] Attempting to withdraw item: Falador teleport
    [INFO][Bot #1][09/28 06:38:23 PM]: [DEBUG][BANKING] Attempting to withdraw item: Iron bar
    [INFO][Bot #1][09/28 06:38:23 PM]: [DEBUG][BANKING] Item not visible
    [INFO][Bot #1][09/28 06:38:27 PM]: [DEBUG][BANKING] Attempting to withdraw item: Mithril axe
    [INFO][Bot #1][09/28 06:38:27 PM]: [DEBUG][BANKING] Attempting to withdraw item: Varrock teleport
    [INFO][Bot #1][09/28 06:38:29 PM]: [DEBUG][BANKING] Attempting to withdraw item: Holy symbol
    [INFO][Bot #1][09/28 06:38:30 PM]: [DEBUG][BANKING] Attempting to withdraw item: Hard leather
    [INFO][Bot #1][09/28 06:38:30 PM]: [DEBUG][BANKING] Attempting to withdraw item: Polished buttons
    [INFO][Bot #1][09/28 06:38:31 PM]: [DEBUG][BANKING] Attempting to withdraw item: Hammer
    [INFO][Bot #1][09/28 06:38:31 PM]: [DEBUG][BANKING] Item not visible
    [INFO][Bot #1][09/28 06:38:34 PM]: [DEBUG][BANKING] Attempting to withdraw item: Ecto-token
    [INFO][Bot #1][09/28 06:38:34 PM]: [ERROR][BANKING] You do not have the required item Ecto-token or its equivalent
    [INFO][Bot #1][09/28 06:38:34 PM]: [DEBUG][BANKING] Attempting to withdraw item: Swordfish
    [INFO][Bot #1][09/28 06:38:34 PM]: [DEBUG][BANKING] Item not visible
    

    Am I supposed to go and farm the ectotokens manually?

     

    feels.png

     

    Script withdraws the ghostspeak amulet, but doesn't know that it has.

    dhCMETO.png

×
×
  • Create New...