View Full Version : mana friend
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
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)
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.