ID:165435
![]() Dec 25 2006, 1:52 pm
|
|
Im designing a text based game, and I have done all my own coding so far, but i am looking to have a function similar to byondarena's which is to have the attack/skill/etc in the stat tab. I have tried a few times, but I cant get it. Can someone help me at all? Thanks.
|
A.T.H.K wrote:
Sure this is fairly easy all you have to do is create an object and but it in the statpanel. > obj/Attack Try not to copy and paste. I think, but if it's turn based I think you would want it like this: mob/Stat() |
A.T.H.K wrote:
And don't use usr in procs.. usr is valid in stat. It defaults to the person looking at the stat panel. Though you generally want to use either src or usr. Probably src if you're using client.statobj. By the way, the stat() proc has usr as it's default recipient which is unchangeable. Are you going to complain about that? =) |
Like so:
Try not to copy and paste.