• 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!

Summon has players name

wikutag

SoulBound 8.6 100% custom
Joined
Dec 27, 2012
Messages
305
Reaction score
0
Location
United states Kentucky
Im using tfs 0.3.6 8.6 client

I want this script to have the players name like before the monsters name or before . It basicly summons a monster

Code:
local amount = 75 -- amount of hp
local times = 1 -- in sec
local name = "Heal pet" -- monster name , make sure that the monster is convinced
local storage = 6746 -- player who have this storage will be able to use
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, TRUE)
 
local function heal(cid)
            local p = getThingPos(cid)
            local healing = false
            if(#getCreatureSummons(cid) >= 1) then
                for _,pid in ipairs(getCreatureSummons(cid)) do
                    if string.lower(getCreatureName(pid)) == string.lower(name) then
                        healing = true 
                        break
                    end
                end
            end
            if healing == true then
                doCreatureAddHealth(cid,amount)
                doSendMagicEffect(getThingPos(cid),CONST_ME_MAGIC_BLUE)
                addEvent(heal,times*1000,cid)
                    for _,pid in ipairs(getCreatureSummons(cid)) do
                        if string.lower(getCreatureName(pid)) == string.lower(name) then
                            doSendMagicEffect(getThingPos(pid),CONST_ME_MAGIC_BLUE)
                            doSendAnimatedText(getThingPos(pid),"Healing",math.random(1,255))
                            break
                        end
                    end
            end
            return true
        end
    local function check(cid)
                local checked = 0
                local place = { x=0,y=0,z=0}
                local h = getThingPos(cid)
                local frompos = {x=h.x-2,y=h.y-2,z=h.z}
                local topos = {x=h.x+2,y=h.y+2,z=h.z}
                for g = frompos.x,topos.x do
                    for d = frompos.y,topos.y do
                        local poss = {x=g,y=d,z=h.z}
                        local tid = getTopCreature(poss).uid
                        if isMonster(tid) or isPlayer(tid) or getTilePzInfo(poss) == TRUE or doTileQueryAdd(cid, poss) ~= 1 then
                            checked = checked + 1
                        else
                            place.x = poss.x
                            place.y = poss.y
                            place.z = poss.z
                            break
                        end
                    end
                end
                if checked >= 25 then
                    return checked
                elseif checked < 25 then
                    return place
                end
                return true
            end
function onCastSpell(cid, var)
    if getPlayerStorageValue(cid,storage) < 1 then
        return doPlayerSendCancel(cid,"You cant use this") and doSendMagicEffect(getThingPos(cid),2) and false
    end
    local search = false
    if(#getCreatureSummons(cid) >= 1) then
        for _,pid in ipairs(getCreatureSummons(cid)) do
            if string.lower(getCreatureName(pid)) == string.lower(name) then
                search = true 
                break
            end
        end
    end
    if search == true then
        doPlayerSendCancel(cid,"You already have a "..string.lower(name).." summoned.")
        doSendMagicEffect(getThingPos(cid),2)
        return false
    else
        local f = getThingPos(cid)
        local pos = {x=f.x+1,y=f.y,z=f.z}
        if not tonumber(check(cid)) then
            doConvinceCreature(cid,doSummonCreature(string.lower(name), check(cid)))
            heal(cid) 
            doCombat(cid,combat,var)
 
        else
            doPlayerSendCancel(cid,"You cant summon here.")
            doSendMagicEffect(getThingPos(cid),2)
        return false
        end
        return true
    end
 
    return true
end
 
Im not sure if this would work but try it
Code:
local name = "[".. getPlayerName(cid) .."] Heal pet"

Would be like [RosOT] Heal Pet. If it works lol
 
sure? -- Omg i keep posting i keep forgeting i can just edit last post lol my bad admins...
oh yeah true i clearly never read what i was saying lmao your right ;)
 
Back
Top