Add files via upload

master
AiTechEye 2018-06-26 09:02:14 +02:00 committed by GitHub
parent e2c6397662
commit 385e90d3a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 246 additions and 0 deletions

2
aliveai_folk/depends.txt Normal file
View File

@ -0,0 +1,2 @@
default
aliveai

243
aliveai_folk/init.lua Normal file
View File

@ -0,0 +1,243 @@
aliveai.create_bot() -- standard bot
aliveai.create_bot({
attack_players=1,
name="jezy",
team="jezy",
texture="aliveai_folk.png",
stealing=1,
steal_chanse=5,
})
aliveai.create_bot({
name="folk1",
texture="aliveai_folk1.png",
arm=3,
})
aliveai.create_bot({
name="folk2",
texture="aliveai_folk2.png",
})
aliveai.create_bot({
name="folk3",
texture="aliveai_folk3.png",
})
aliveai.create_bot({
name="folk4",
texture="aliveai_folk4.png",
work_helper=1,
})
aliveai.create_bot({
name="folk5",
texture="aliveai_folk5.png",
light=-1,
stealing=1,
steal_chanse=2,
talking=0,
smartfight=0,
fighting=0,
lowest_light=9,
})
aliveai.create_bot({
name="folk6",
texture="aliveai_folk6.png",
})
aliveai.create_bot({
name="folk7",
texture="aliveai_folk7.png",
})
aliveai.create_bot({
name="folk8",
texture="aliveai_folk8.png",
})
aliveai.create_bot({
name="folk9",
texture="aliveai_folk9.png",
hp=30,
light=-1,
stealing=1,
steal_chanse=5,
lowest_light=5,
})
aliveai.create_bot({
name="folk10",
texture="aliveai_folk10.png",
})
aliveai.create_bot({
name="folk11",
texture="aliveai_folk11.png",
})
aliveai.create_bot({
name="folk12",
texture="aliveai_folk12.png",
})
aliveai.create_bot({
name="folk13",
texture="aliveai_folk13.png",
hp=30,
})
aliveai.create_bot({
name="folk14",
texture="aliveai_folk14.png",
hp=50,
dmg=8,
work_helper=1,
})
aliveai.create_bot({
name="folk15",
texture="aliveai_folk15.png",
hp=15,
})
aliveai.create_bot({
name="folk17",
texture="aliveai_folk17.png",
hp=21,
on_step=function(self,dtime)
if not self.juggling and self.isrnd and math.random(1,40)==1 then
for name, s in pairs(self.inv) do
if s>30 then
self.juggle_with=name
break
end
end
if not self.juggle_with then return end
aliveai.stand(self)
self.juggle=math.random(3,10)
self.juggling=math.random(50,100)
end
if not self.juggling then return end
self.juggling=self.juggling-1
if self.juggling<0 or self.inv[self.juggle_with]==nil or self.inv[self.juggle_with]<1 then self.juggling=nil self.time=self.otime return end
self.time=1 -((self.juggle*0.1)*0.9)
local y=5 + self.juggle
local pos=self.object:get_pos()
local yaw=self.object:getyaw()
if not self.jside then self.jside=1
elseif self.jside==0.2 then self.jside=-0.2
else self.jside=0.2 end
local x =math.sin(yaw) * self.jside
local z =math.cos(yaw) * self.jside
pos.y=pos.y-0.1
for _, ob in ipairs(minetest.get_objects_inside_radius(pos, 2)) do
local en=ob:get_luaentity()
if en and en.name=="__builtin:item" and en.itemstring==self.juggle_with and not en.jtokken then
en.jtokken=1
ob:punch(self.object,1,{full_punch_interval=1,damage_groups={fleshy=1}})
self.inv[self.juggle_with]=self.inv[self.juggle_with]+1
end
end
self.inv[self.juggle_with]=self.inv[self.juggle_with]-1
local e=minetest.add_item(aliveai.pointat(self,0.5), self.juggle_with)
e:setvelocity({x=x,y=y,z=z})
return self
end
})
aliveai.create_bot({
name="folk18",
texture="aliveai_folk18.png",
hp=50,
leader=1,
name_color="FF00FFFF",
on_step=function(self,dtime)
if self.fight and not self.command then
self.command=1
aliveai.searchhelp(self)
elseif self.command and not self.fight then
self.command=nil
end
end,
})
aliveai.create_bot({
name="folk19",
texture="aliveai_folk19.png",
hp=10,
fighting=0,
visual_size={x=0.8,y=0.8},
collisionbox={-0.3,-0.8,-0.3,0.3,0.65,0.3},
})
aliveai.create_bot({
name="folk20",
texture="aliveai_folk20.png",
hp=10,
fighting=0,
visual_size={x=0.8,y=0.8},
collisionbox={-0.3,-0.8,-0.3,0.3,0.65,0.3},
})
aliveai.create_bot({
name="folk21",
texture="character.png^aliveai_folk_admin.png",
floating=1,
superbuild=1,
creative=1,
hp=100,
dmg=10,
on_step=function(self,dtime)
if self.fight and self.fight:get_luaentity() then
self.fight:remove()
self.fight=nil
end
end,
on_detect_enemy=function(self,target)
if target:get_luaentity() then
target:remove()
self.fight=nil
end
end,
})
aliveai.create_bot({
attack_players=1,
name="dum",
team="jezy",
texture="aliveai_folk22.png",
stealing=1,
steal_chanse=5,
})
aliveai.create_bot({
attack_players=1,
name="color",
team="color",
texture="aliveai_folk23a.png^[colorize:#789ABCDE",
talking=0,
spawn=function(self)
local c=""
local n=0
local t="0123456789ABCDEF"
local colors={}
for i=1,3,1 do
for i=1,8,1 do
n=math.random(1,16)
c=c .. string.sub(t,n,n)
end
table.insert(colors,c ) --.. "55"
c=""
end
local a="aliveai_folk23a.png^[colorize:#" .. colors[1]
local b="aliveai_folk23b.png^[colorize:#" .. colors[2]
local c="aliveai_folk23c.png^[colorize:#" .. colors[3]
self.storge1=a .."^" .. b .."^" .. c
self.object:set_properties(
{textures = {self.storge1},
})
self.namecolor=colors[3]
self.object:set_properties({nametag=self.botname,nametag_color="#" .. self.namecolor})
end,
on_load=function(self)
self.object:set_properties(
{textures = {self.storge1},
})
self.object:set_properties({nametag=self.botname,nametag_color="#" .. self.namecolor})
end,
})

1
aliveai_folk/readme.txt Normal file
View File

@ -0,0 +1 @@
npc for aliveai

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 483 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 738 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 870 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 863 B