Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // Player method to do bot thinking. Might be better to put this as AIPlayer, but whatever...
  2. function Player::botThink(%this)
  3. {
  4. %this.getDataBlock().botThink(%this);
  5. }
  6.  
  7.  
  8. // Placeholder playerdata method to stop script spam.
  9. function PlayerData::botThink(%this)
  10. {
  11. }
  12.  
  13.  
  14. // Datablock-specific bot thinkage.
  15. function BossBot::botThink(%this, %player)
  16. {
  17. // Do whatever.
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement