Help, question inside.
#1

Im making an LSPD MDC, and I wanna make to show the last 20, 911 calls.
for example:
if there's 100 calls which hasn't been taken yet, how can I show the last 20 from the 100?
and how can I attach the listitem in the dialog to the right caller.
Reply
#2

give some variables to work with because if i do it with my own then you would be like what is this what is that ?

If u haven't got any then u shouldn't be at this stage!
Reply
#3

I guess it should be like that?

pawn Код:
enum EMERGANCY_INFO
{
    callType[64],
    callCaller[MAX_PLAYER_NAME],
    callSitation[128],
    callLocation[64],
    callTrace[64]
}
new CallInfo[MAX_PLAYERS][EMERGANCY_INFO];
Reply
#4

that doesn help much

ill through u an example.
pawn Код:
UnAnswearCalls; //use it do at how many calls they missed (currently public var)
new CallID[100];//store the 100 calls
for(new i=0; i < sizeof UnAnswearCalls; i++)
{
      new tStr[120],FInalStr[280];
      format(tStr,sizeof tStr,"%s\n",CallID[i]);
      Strcat(FInalStr, tStr,sizeof FInalStr);
}
that will display the text of the Array named CallID by the number of mixed calls that are loop
Something like that.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)