sfcnr/gamemodes/irresistible
2018-09-25 22:23:20 +01:00
..
anticheat move fake-kill and car warp code into respective anticheat modules 2018-09-19 10:23:00 +10:00
cnr move animations code to module 2018-09-25 22:23:20 +01:00
config update changelog 2018-09-25 12:49:00 +10:00
gta move command to /estate for now 2018-09-25 12:42:20 +10:00
_blank.pwn
_main.pwn
analytics.pwn
attachments.pwn
floodcontrol.pwn
helpers.pwn turned out i didnt restart my pc in over a month! gettickcount fix incase it bugs like it did on mine ... on the dedi 2018-09-19 17:50:55 +10:00
lookup.pwn
mailer.pwn
README.md Add callback OnHouseOwnerChange 2018-09-25 03:46:21 +10:00
sampac.pwn disable aimbot (6) detection 2018-09-20 19:31:42 +10:00
security.pwn
servervars.pwn

Irresistible Gaming Development Framework

Source Contributors: Lorenc ("Lorenc") Pekaj, Steven ("Stev") Howard

BIG THANKS to Stev, Nibble, Banging7Grams, Kova, Queen and Panther for making this possible.

Script Callbacks

  • public SetPlayerRandomSpawn( playerid )
    • Called when a player is attempting to be respawned somewhere randomly
  • public OnServerUpdate( )
    • Called every second (or sooner) indefinitely
  • public OnPlayerUpdateEx( playerid )
    • Same interval as OnServerUpdate, but it is called indefinitely for every player in-game
    • When you wish to update something frequently, but not use OnPlayerUpdate
  • OnServerGameDayEnd( )
    • Called every 24 minutes in-game (basically when a new day starts)
  • OnNpcConnect( npcid )
    • Called specifically when an NPC connects, as OnPlayerConnect will not
  • OnNpcDisconnect( npcid, reason )
    • Called specifically when an NPC disconnects, as OnPlayerDisconnect will not
  • OnPlayerDriveVehicle( playerid, vehicleid )
    • Called when a player enters a vehicle as a driver
  • OnPlayerLogin( playerid, accountid )
    • Called when a player successfully logs into their account
  • OnHouseOwnerChange( houseid, ownerid )
    • Called when the ownership of a home is changed