Jump to content
SSForum.net is back!

Maverick

»VIP
  • Posts

    3556
  • Joined

  • Last visited

Everything posted by Maverick

  1. you should publish your editor on www.subspacedownloads.com, it sure is a good editor :dualthumb:
  2. What zone have you been banned from and/or is it a network wide ban?
  3. Suppose you are working on a map and one day you do *getfile the same map from the server. Map gone. Its a really bad thing to force people make use of a directory that most developers don't want to use. (Not to mention all the Continuum Program files are in there, thats why its under C:\Program Files)
  4. Developers usually don't store their maps in the C:\Program Files\Continuum folder since it can be overwrittened by Continuum. Bad suggestion imo
  5. For solving that Continuum-start bug, make sure you are running no anti-virus or anti-spyware programs that might affect Continuum in any way.
  6. The most things you said in your post are utterly BS, confess. It was only meant to scare people so they start believing abortion is bad. [Moving to Politics Forum]
  7. I know already and I'm working on it. (Invision is slow in support)
  8. there are programs around capable of recording the screen when you play . I believe I suggested a good one in a topic before.
  9. ... if there is no firewall blocking the server from updating the directory server If the firewall at your router is set correctly or isn't enabled, you can give people your server's name and they can find it in the zones list as SOS said.
  10. Better use Esc + C because its more easier . You can also (if you are sysop) do *getfile server.cfg and then edit server.cfg which is located in your Continuum directory. Use http://wiki.minegoboom.com/index.php/Complete_Settings as reference for all the possible settings.
  11. You can also log into the zone by using the IP from your router (your internet IP that is). However, firewalls may be in the way.
  12. Make sure your name is on sysop.txt and: [Validation] CheckMod=0 CheckSMod=0 CheckSysop=0 must all be 1. Then once you are logged into your zone type '*SysopP!@#$%^&*word' where SysopP!@#$%^&*word is the password from your server.ini: [password] section, SysopP!@#$%^&*word key. Try *log to see you are logged into sysop mode.
  13. I meant you should try to connect to your server using 127.0.0.1. Thus, when you add a custom zone to your zone list, use the IP 127.0.0.1. Already tried turning off your firewall?
  14. You can try that. However I would recommend you to connect to your server using the IP 127.0.0.1 for now. See if that works apart from disabling your firewall for the time being.
  15. It must be a firewall that is blocking the connection between your server and your client. Is the server on your own computer or another? What IP do you use to connect to your server? Is there a firewall on your router?
  16. Check your server console window for any errors that are displayed when you try to connect. If you see any, report them here. Make sure any firewall on your network isn't blocking connection to your server / biller. When the server is on your own computer you can try connecting to 127.0.0.1, however people from outside still can't connect to your server then.
  17. Is the zone green on your zone list and what error message does it give you when you try to connect to your zone?
  18. Methias, it is quite simple to make your own zone once you know how and you got the right tools (read: software) to do it. Instead of offering money for someone to do it for you, you should let us know what problems you are having so we can help you better. (and it will be free)
  19. Is it that much of a problem to you? I don't think anyone can explain.
  20. [Moved to Trash Forum]
  21. your function isn't part of the botInfo class. Making it part of it by doing void botInfo::readINI() { will save you alot of work and makes things easier. If you make the function part of it you can use the variable 'arena' with no problems. Nonetheless, in your function I would recommend you to try using botInfo.arena. However, you have to move the char *arena; from Spawn.h into the public section first.
  22. awesome :dualthumb: - You should make some icons for the tools instead of text - Also, why can I make the window of the map smaller and move it while only 1 map can be loaded at the same time? - Make a nice icon for the program instead of the standard VB icon(s) - Make some icons for the special tiles and some help on them like !@#$%^&* (why not delete all other special tiles - with a number - since they can't be used) - Create support for 16-bit and 32-bit tilesets, that would make your map editor original and better then !@#$%^&* Keep up the good work
  23. On the EVEN_ArenaEnter you will see: //////// Arena //////// case EVENT_ArenaEnter: { arena = (char*)event.p[0]; me = (Player*)event.p[1]; // if(me) {/*we are in the arena*/} bool biller_online = *(bool*)&event.p[2]; } break; Thus the global variable 'arena' is filled there and contains the arena name the bot currently is in. I don't believe additional parameters for DLLs are possible, instead use a .ini file and read the values from that. The windows.h library has ready-to-use methods available for .ini files: const int BUFFER_LEN = 256; static char buffer[BUFFER_LEN]; static char INIPath[BUFFER_LEN]; GetCurrentDirectory(192, INIPath); strcat(INIPath, "\\pluginName.ini"); WritePrivateProfileString("Section", "KeyName", "KeyValue", INIPath); GetPrivateProfileString("Section", "KeyName", "DefaultValue", buffer, BUFFER_LEN, INIPath); sendPublic("Value = "+String(buffer)); Be aware that the buffer is large enough to contain the data (and for the path).
  24. request denied
  25. meh
×
×
  • Create New...