battle_sorters
parent_type = /obj
var
mob/A
mob/B
New(location, mob/a, mob/b)
..()
src.A = a
src.B = b
if(A&&B)
StartBattle(A,B)
StartChecking(A, B)
proc
StartChecking(mob/A, mob/B)
spawn while(src)
if(!A) LogOutBattle(A, B)
else if(!B) LogOutBattle(B, A)
sleep(25)
StartBattle(mob/A, mob/B)
if(!A||!B) return
var/mob/C=A.Companion1
if(C)
C.loc=locate(A.x,A.y+1,A.z)
C.owner=A
if(A.agi==B.agi)
if(prob(50))
var/teChakravar = A
A = B
B = teChakravar
EngageBattle(A, B)
else
if(A.agi > B.agi)
EngageBattle(A, B)
else
EngageBattle(B, A)
Problem description:Keep getting a runtime error along with the Companion not showing up on the battlefield..Here is the runtime error.
runtime error: Cannot modify /mob/monsters/Companion1.loc.
proc name: StartBattle (/battle_sorters/proc/StartBattle)
usr: Marcus55 (/mob/player)
src: the battle sorters (/battle_sorters)
call stack:
the battle sorters (/battle_sorters): StartBattle(Marcus55 (/mob/player), Ninja1 (/mob/monsters/Ninja1))
the battle sorters (/battle_sorters): New(Grass (5,6,2) (/turf/Grass), Marcus55 (/mob/player), Ninja1 (/mob/monsters/Ninja1))
Marcus55 (/mob/player): Move(the squints (46,7,1) (/turf/monsterspawn/squints), 2, 0, 16)
You can test by changing this line from -
var/mob/C=A.Companion1
to -
var/mob/C= new A.Companion1
Is this supposed to be an instance (so it can change levels and statistics, etc?) if so, you probably would want to create it when you first assign it's value.