PDA

View Full Version : mana friend



itza
03-24-2016, 03:48 PM
I am currently training my magic level but I was wondering how I can get another character to pot me.
So the whole progress goes a bit faster.

Thanks in advance!

dean015
03-24-2016, 07:44 PM
im not sure exactly how to do this but my friend was recently deleted for doing this with 3 facc chars on a clean account

gl

itza
03-26-2016, 12:53 AM
yea but im playing on an OT now so I am safe ^^

Sheradial
04-02-2016, 11:43 PM
I am currently training my magic level but I was wondering how I can get another character to pot me.
So the whole progress goes a bit faster.

Thanks in advance!






local friend = "Sheradial"
local pot = POTION ID

Module.New("Pot", function (mod)
local frnd = Creature.New(friend)
if (frnd:Name(friend) and frnd:isVisible() and frnd:isReachable()) then
frnd:Follow(friend)
Self.UseItemWithFollow(pot)
end
mod:Delay(500)
end)

Haven't tested it.

EDIT: edited

krille09
04-03-2016, 12:25 AM
local friend = "friendName"
local pot = POTION ID

Module.New("Pot", function(mod)
local f = Creature.New(friend)
if (f:Name(friend) and f:isVisible() and f:isReachable()) then
f:Follow(friend)
Self.UseItemWithFollow(pot)
end
mod:Delay(500)
end)