Jump to content

BTH

Members
  • Posts

    99
  • Joined

  • Last visited

Everything posted by BTH

  1. Wine or Cedega... Don't know if MTA works.
  2. Scripting Tutorial 7 - Bomp Shop - Tuesday 13 March 2007 (16:18)
  3. Write that in English, and i might help you.
  4. Not necessarily. You can easily move a lot of objects in unison without writing lots of script code (object arrays and loops for example). Moving a lot of objects in the same direction and with the same speed should be no problem. Same goes for pickups (assuming you can dynamically set the xyz attributes). I was also thinking of the glue function. This will come in handy if you want to move objects as one... You beat me to it
  5. SA:MP has deathmatch, MTA: SA has quality. EDIT: MTA: SA is only racing at the moment, but deathmatch is coming. Sometime.
  6. Th error is from the error reporter(!). Just ignore it.
  7. http://forum.mtavc.com/viewtopic.php?t=18501
  8. It can't be added easily AFAIK. The source code he posted was for .NET. MTA is coded in native C++.
  9. Doesn't Lua have built-in support for copying tables?
  10. You're mixing up C++ and Microsoft Visual C++. Native C++ does not use .net
  11. Whats the point of this? [lua]function copyTable ( src, des ) for k,v in pairs(src) do if (type(v) == "table") then des[k] = {} copyTable(src[k],des[k]) else des[k] = v end end end[/lua]
  12. BTH

    MTA at x64?

    http://forum.mtavc.com/viewtopic.php?t=19115 http://forum.mtavc.com/viewtopic.php?t=19086
  13. BTH

    Squad Mode?

    >_> <_< Scripting!
  14. Statistics query($sql); $msg = mysql_num_rows($mySQL->query); echo " Total guesses: $msg\n"; $sql = 'SELECT * FROM guesses where gdate < NOW();'; $mySQL->query($sql); $msg = mysql_num_rows($mySQL->query); echo "Passed dates: $msg \n"; $sql = 'SELECT feat FROM guesses where feat != \'\';'; $mySQL->query($sql); echo ' Feature guesses:'; echo ''; $vary = true; while($outs = mysql_fetch_array($mySQL->query)){ $class = ($vary = !$vary)? "class1" : "class2"; echo " $outs[0]\n"; } ?>
  15. New statistics page: http://itsbth.awardspace.com/stats.php. Keep the guesses coming! PS: Note the maturity of the guesses :\
  16. If you bought GTA recently, you need to get the downgrade patch here.
  17. You can't get the MAC address without being in the same local network.
  18. The last element is actually a string with functionname.
  19. BTH

    you guys are great

    Since were all started with the bumping, we might sticky this sarcasm
×
×
  • Create New...