• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved doCreateMonster about fire field

Shackal

Alien Project
Joined
Feb 7, 2009
Messages
211
Reaction score
17
Location
Brazil
doCreateMonster("Rift Worm", { x =32694, y =32778, z =7}, false, true)

params are name, position, extended, force, error

Hello guys,

I'm using TFS 0.4
I'm Trying to summon a creature about a fire field but it not work.
I was try to use funcion doForceSummonCreature but it not work with tfs 0.4

Who can help me?
Ty u in advance and sorry my bad english

script used:
test.lua
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    doSummonCreature("Rift Worm", { x =32694, y =32778, z =7})
    return true
end
 
Last edited:
Hmm if I remember correctly the last param was optional boolean to force the summon or not... I could be wrong tho :p
 
doCreateMonster(name, pos, force)
so work but force to summon only 2 sqms far.. If fill of fire fields return this error in console:
Cannot Create Monster
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    doCreateMonster("Rift Worm", { x =32694, y =32778, z =7}, true)
    return true
end

that func is in sources?
no bro.. 0.4 :/
It is so hard to add?
 
Last edited:
Back
Top