13.01.2012, 02:54
Hey,
When I start a new script I like to start with the callbacks and indentation thats personal to me. but what about you guys? What does your new.pwn look like?
There's mine post yours using the [ pawn ] tags.
When I start a new script I like to start with the callbacks and indentation thats personal to me. but what about you guys? What does your new.pwn look like?
pawn Код:
/* ================================ INCLUDES ================================ */
/* ================================ DEFINES ================================ */
/* ================================ FORWARDS ================================ */
/* ================================ SCRIPT ================================ */
main()
{
}
#endif
public OnGameModeInit()
{
return 1;
}
public OnGameModeExit()
{
return 1;
}
public OnPlayerRequestClass(playerid, classid)
{
return 1;
}
public OnPlayerConnect(playerid)
{
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
return 1;
}
public OnPlayerSpawn(playerid)
{
return 1;
}
public OnPlayerDeath(playerid, killerid, reason)
{
return 1;
}
public OnPlayerText(playerid, text[])
{
return 1;
}
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
return 1;
}
public OnPlayerUpdate(playerid)
{
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
return 1;
}
/* ================================ STOCK FUNCTIONS ================================ */
/* ================================ COMMANDS ================================ */