home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2000 June / CD-Gamer_2000-06_10_cd.bin / Patches / Quake3A / q3pointrelease_116n.exe / Main / pak2.pk3 / botfiles / script.c < prev    next >
Encoding:
Text File  |  1999-12-31  |  1.5 KB  |  54 lines

  1. //===========================================================================
  2. //
  3. // Name:            script.c
  4. // Function:
  5. // Programmer:        Mr Elusive (MrElusive@idsoftware.com)
  6. // Last update:        1999-08-14
  7. // Tab Size:        3 (real tabs)
  8. //===========================================================================
  9.  
  10.  
  11. //script procedure (script with the name "main" is initial script)
  12. script "name" {}
  13. //point definition (default positions "entity1", "entity2" etc.)
  14. point("name", x, y, z);
  15. //box definition
  16. box("name", minx, miny, minz, maxx, maxy, maxz);
  17. //move a box
  18. movebox("boxname", "pointname");
  19. //move bot to a certain position
  20. moveto("boxname");
  21. //aim at a certain point
  22. aim("point");
  23. //say something
  24. say("text", "wav filename");
  25. //do a specific model animation
  26. wave("wave type");
  27. //select weapon with number 'x'
  28. selectweapon(x);
  29. //fire the current weapon
  30. fireweapon();
  31. //wait 'x' seconds
  32. wait(time(x));
  33. //wait until entity with number 'entitynum' touches 'box'
  34. wait(touch(entitynum, "box"));
  35.  
  36. script "main"
  37. {
  38.     point("red armor point", 120, 120, 120);
  39.     box("red armor box", -16, -16, -16, 16, 16, 16);
  40.     movebox("red armor box", "red armor point");
  41.     //
  42.     point("near red armor point", 100, 100, 100);
  43.     box("near red armor box", -16, -16, -16, 16, 16, 16);
  44.     movebox("near red armor box", "near red armor point");
  45.     //
  46.     say("I'm going to the red armor", NULL);
  47.     say("follow me", NULL);
  48.     moveto("red armor box");
  49.     wait(touch(1, "red armor box"));
  50.     moveto("near red armor box");
  51.     wait(touch(0, "red armor box");
  52. }
  53.  
  54.