Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Displaced

Members
  • Posts

    1019
  • Joined

  • Last visited

    Never

Everything posted by Displaced

  1. why not: ``` margin-top: 50px; margin-bottom: 50px; margin-left: auto; margin-right: auto; -> margin: 50px auto 50px auto; ```And this for everything there..
  2. The first pixel (left top) is the transparent color. Alphachannels are not supported.
  3. Displaced

    Admin panle

    It's magic.. No serious you have to make the window bigger.. its on the right of the client hidden beyond the edge.
  4. If you need a laptop with much capacity you could go for timeline X series.. I have one and it's really good if you're doing some programmings while you're somewhere without energy-supply… But they have enough power to run games. Ad with the other thing, baron is right i think. Or it's just amazons fault ;)
  5. Displaced

    Playing online.

    port forwarding.. you have to forward every external connection on port 7001 to your lan ip on port 7001.. Hamachi works almost the same way. You must have set your firewall for hamachi and eclipse and use the hamachi ip.
  6. Displaced

    Playing online.

    If you had done everything right, it would probably work, right? So make sure the routes are correct. your router ext ip : 7001 -> your lan ip : 7001 If so, make sure your router supports that function. There are some routers which "have" this feature but it's deactivated…
  7. Displaced

    I'm an idiot

    You 're mad.. Learn how to post and how to be polite and how to write politely and how to ask questions and come back… Really. It's annoying.
  8. That sound much better. I know you're limited to wine. But normally you should be able to handle more. Do you have swap for every server?
  9. 10 Players? Are you kidding? With this server i should be able to handlle about 50-100 players… What CPU do yo offer with this server?
  10. If you already know a language -> just go through eclipse, it will teach you everything WITHOUT knowing vb6… If you don't know a language, it doesn't really matter which language you learn. You could learn vb.net and you would know vb6 very fast, even if the models are different (oop vs not oop)
  11. hm Try ``` If target_verify Then If (abs(MapNpc(MapNum).Npc(x).y - TargetY) = 1) and (abs(MapNpc(MapNum).Npc(x).x - TargetX) = 1) Then DidWalk = True End If ```put it after If target_verify Then in updatemaplogic…
  12. I'm missing update game logic… there is the npc movement in there
  13. Well i personally optimised my code for myself so it doesn't look like original EO.. But Basicly, the Npcs trys to get X & Y difference to 0 1 or 1 0 (because 0 0 doesn't work). So i think you have to check extra if they're 1 1 because this is legal too for you.
  14. Horrible quality.. Well did you try to check before moving, if the npc has got the needed range? Because if so, you won't have to move the npc… Something like If( range >= x) Then DidWalk = True
  15. Why should the npc attack you from a position, where you can't attack back? If you want to do that you have to check where the position is check. Because it check if the positions N E S W. (x+1 / y) (x-1 / y) (x / y+1) (x / y-1) The other thing is. You could write a better pathfinding by yourself i think. How would you do this? Draw a coordinate system. Draw 2 Points. Draw some hurdes. And look how would you go through it and how you could say this to a pc.
  16. What do you mean by, they crowd to N E S W but not the other ones? Npc movement is random. They try to walk, if they couldn't they're forced to try all 4 directions. To find to the npc is almost the same. They just shrink the x & y positions to your character. if it doesn't work, they try another way. So normally they shouldn't stop at a tree or something.
  17. Yup. See this should be your network: Modem/Router -> your pc So you step into the router config. and forward port. External connections on port 7001 to YOURIP:7001 With your IP i mean your LAN IP. Probably something like 192.168.0.100.. If you done right, your partner can log on with your WAN IP. Which you can find on www.whatismyip.com But be aware: Your IP always change on reconnect to your ISP. So enough information… there are several guides for that shit.
  18. It's not the loop. It's the position itself. It's set to the next position BEFORE moving. So you set the new position, and then move the sprits. For you it looks like, you clicked the wrong one, but actually, you don't. The loop is not the problem. It's fine.
  19. Kowalski! Options! 1) Get a server 2) Forward ports on your router 3) Use OpenVPN or other VPN Methods.
×
×
  • Create New...