
- Updated @noask to also tell the rejected what he has just rejected (added msg_athena entries for each of the different requests) - Since noask already does a player lookup, updated the corresponding parsing functions to take the player rather than the player id (prevents double lookups) git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7117 54d463be-8e91-2dee-dedb-b68131a5f0ec
16 lines
585 B
C
16 lines
585 B
C
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef _TRADE_H_
|
|
#define _TRADE_H_
|
|
|
|
#include "map.h"
|
|
void trade_traderequest(struct map_session_data *sd, struct map_session_data *target_sd);
|
|
void trade_tradeack(struct map_session_data *sd,int type);
|
|
void trade_tradeadditem(struct map_session_data *sd,int index,int amount);
|
|
void trade_tradeok(struct map_session_data *sd);
|
|
void trade_tradecancel(struct map_session_data *sd);
|
|
void trade_tradecommit(struct map_session_data *sd);
|
|
|
|
#endif // _TRADE_H_
|