![]() |
CTP2 Bureau The Modding Knowledgebase |
|
Apolyton CTP2 forums Apolyton CTP2 archives Source Code Project SVN |
![]() |
Search the site: |
SLIC-Reference :
|
Arguments: | player1, player2, priority, first_type, second_type, strid1, strid2, strid3 | Type: | void |
Makes first player consider sending a proposal of the given type with the given priority to second player - additional parameters may be needed depending on proposal type |
tested
working
// ---------------------------------------------------------------------------------------- // // VOID ConsiderNewProposal // 1. sender // 2. receiver // 3. priority - int, the proposal's priority // 4. first_type - int, ProposalDB index of first proposal // [first_args] - if proposal has 'arg1' in ProposalDB, this is it // 5. second_type - int, optional ProposalDB index of 'in addition' proposal // [second_args] - if proposal has 'arg1' in ProposalDB, this is it // 6. stringID1 // 7. stringID2 // 8. stringID3 // [tone] - int, 0 (Magnanimous/Kind) to 4 (Hostile/Angry) // // The type of first_arg and second_arg depends on first_type and second_type respectively. // See ParseProposalDataSlicArgs // //------------------------------------------------------------------------------------------- SFN_ERROR Slic_ConsiderNewProposal::Call(SlicArgList *args) { if (args->Count() < 8) return SFN_ERROR_NUM_ARGS; sint32 argNum = 0; NewProposal new_proposal; if (!ParseNewProposalSlicArgs(args, argNum, new_proposal)) return SFN_ERROR_TYPE_ARGS; Diplomat::GetDiplomat(new_proposal.senderId). ConsiderNewProposal(new_proposal.receiverId, new_proposal); DPRINTF(k_DBG_SLIC, ("ConsiderNewProposal:sender %d, receiver %d, prop %d\n", new_proposal.senderId,new_proposal.receiverId, new_proposal.detail.first_type)); return SFN_ERROR_OK; } |
Using this form you may add your own observations concerning the above item, e.g. additional hints for usage, limitations, oddities etc. Please note this is not the place for asking questions or carrying out discussions about modding - please refer to the Apolyton CTP2 Modification Forum on that purpose.
*) Required fields
No user comments yet. |
![]() |
This site is currently maintained by: BureauBert (Webmaster) Maquiladora (Manager) Legal Notice: Legal Notice Statistics: 102514 unique users since 02.05.2004 (» Site Statistics) Hosted by: WebhostOne |