Server Help

ASSS Custom Projects - >goal< spree module

tcsoccerman - Sat May 05, 2007 9:42 pm
Post subject: >goal< spree module
Would anyone be willing to introduce me to a goal spree module. It'd be just like a spree module, there fore doing this:
1.recgoinzing a goal, and who scored it.
2.addinga goal to spree "tracker" data
3.arena messages anouncing spree achievements(for example 10 goals);
4.include bongs in arena messages


some great others would be
1.assists(player that touched the ball b4 player that scored scores)

ty very much.
Animate Dreams - Sat May 05, 2007 11:33 pm
Post subject:
I modified my points_kill module to work based off of spreeing, it's fairly easy. First, you'll need playerdata, which should go something like this:

Code: Show/Hide
/* player data */

typedef struct SpreeData
{
    int kills;
} SpreeData;
local int playerKey;


Then I just added this code to the beginning of the function:

Code: Show/Hide
    SpreeData *killerSpree = PPDATA(killer, playerKey);
    SpreeData *killedSpree = PPDATA(killed, playerKey);
   
    killerSpree->kills++;
    killedSpree->kills = 0;


And then at the end, points are updated with the line *totalpts += pts; , so right before that line I decided I'd reward points based on a multiplier equal to their number of kills: pts = pts * killerSpree->kills; , so I put that line of code right before the *totalpts += pts; . Er, um... you should also, in the MM_ATTACH section, allocate your data( playerKey = pd->AllocatePlayerData(sizeof(SpreeData)); ), and then free that data(just like in the C tutorial for modules, but I just realized I never did that, yet my module works... wtf.
BDwinsAlt - Sat May 05, 2007 11:38 pm
Post subject:
EDIT: ACK nvm you replied b4 me.

Untest but you can try this. (ATTACHED and TYPED)
Code: Show/Hide

from asss import *

chat = get_interface(I_CHAT)

def mm_attach(arena):
    arena.cb1 = reg_callback(CB_GOAL, goalspree, arena)
    arena.cb2 = reg_callback(CB_PLAYERACTION, paction, arena)

def mm_detach(arena):
    arena.cb1 = None
    arena.cb2 = None

def goalspree(arena, p, bid, x, y):
    p.goalspree_spree += 1
    if p.goalspree_spree == 10:
        chat.SendArenaSoundMessage(arena, SOUND_GOAL, "%s Blah Blah Blah! (10:0)" % (p.name) )
    elif p.goalspree_spree == 15:
        chat.SendArenaSoundMessage(arena, SOUND_GIRL, "%s No me gusta a Bill Gates! (15:0)" % (p.name) )

def paction(p, action, arena):
    if action == PA_ENTERGAME:
        p.goalspree_spree = 0
    elif action == PA_LEAVEARENA:
        p.goalspree_spree = None

Smong - Thu May 17, 2007 2:35 pm
Post subject:
Just wondering when does the spree get reset? When the player dies?
tcsoccerman - Thu May 17, 2007 3:17 pm
Post subject:
although i don't need it anymore, i would reset every game? if not that then login/out for sure
All times are -5 GMT
View topic
Powered by phpBB 2.0 .0.11 © 2001 phpBB Group