ID:176708
![]() Dec 18 2002, 10:51 am
|
|
i need help i have no idea how to make a boss in my game that ppl can only fight once also does neone now how to make a party system or where i can find an example code
|
Copyright © 2025 BYOND Software.
All rights reserved.
Boss
verb
fight()
set src in oview(1)
if(usr.foughtBoss) usr << "You already fought this boss"
else
usr << "You fight the boss and win."
usr.foughtBoss = 1
var/foughtBoss = 0