コード例 #1
0
ファイル: food.py プロジェクト: afriedman1997/RSPS
 def __init__(self, player, amount):
     Event.__init__(self, 1500)
     self.player = player
     self.amount = amount
     self.player.heal(self.amount)
     player.setBusy(True)
     player.animate(829)
コード例 #2
0
ファイル: food.py プロジェクト: afriedman1997/RSPS
	def __init__(self, player, amount):
		Event.__init__(self, 1500)
		self.player = player
		self.amount = amount
		self.player.heal(self.amount)
		player.setBusy(True)
		player.animate(829)
コード例 #3
0
ファイル: teletabs.py プロジェクト: afriedman1997/RSPS
 def __init__(self, player, x, y, z):
     Event.__init__(self, 1255)
     self.player = player
     player.setBusy(True)
     player.getWalkingQueue().reset()
     player.animate(75133)
     player.graphics(1680)
     self.location = Location.location(x, y, z)
コード例 #4
0
ファイル: teletabs.py プロジェクト: afriedman1997/RSPS
	def __init__(self, player, x, y, z):
		Event.__init__(self, 1255)
		self.player = player
		player.setBusy(True)
		player.getWalkingQueue().reset();
		player.animate(75133)
		player.graphics(1680)
		self.location = Location.location(x, y, z)
コード例 #5
0
ファイル: teletabs.py プロジェクト: afriedman1997/RSPS
 def __init__(self, player):
     Event.__init__(self, 1500)
     self.player = player
コード例 #6
0
ファイル: bones.py プロジェクト: afriedman1997/RSPS
 def __init__(self, player):
     Event.__init__(self, 2000)
     self.player = player
     player.setBusy(True)
     player.animate(827)
コード例 #7
0
ファイル: bones.py プロジェクト: afriedman1997/RSPS
	def __init__(self, player):
		Event.__init__(self, 2000)
		self.player = player
		player.setBusy(True)
		player.animate(827)
コード例 #8
0
ファイル: teletabs.py プロジェクト: afriedman1997/RSPS
	def __init__(self, player):
		Event.__init__(self, 1500)
		self.player = player
コード例 #9
0
ファイル: potions.py プロジェクト: afriedman1997/RSPS
	def __init__(self, player, stat, amount):
		Event.__init__(self, 1500)
		self.player = player
		self.stat = stat
		self.amount = amount
		player.animate(829)