Home » MODDING HQ 1.13 » Flugente's Magika Workshop » Absurdly small code changes
() 1 Vote
Re: Absurdly small code changes[message #353722 is a reply to message #353694]
|
Sat, 09 June 2018 22:44
|
|
Flugente |
|
Messages:3507
Registered:April 2009 Location: Germany |
|
|
Part of the game code is a huge array that stores so called Facts. These are a sort of 'notes', mostly to store quest-related data (Did we give Madlab a video camera? Has Steve heard about us rescuing Joey? Which whores are available?). We use them in the code, in lua
Toggle Spoiler
if ( (CheckFact( Facts.FACT_CHALICE_STOLEN, 0 ) == true) ) then
and also in NPC scripts, set in .npc files. The important thing I want to draw attention to is that NPC conversations also set facts. This makes sense when you think about it, most NPCs have some long dialogue over several files that they never repeat. This is achieved by setting a fact.
Unfortunately, these facts set for conversation purposes are not listed inside the code. This is bad if, say, some dashing young coder comes along, codes something which needs a fact, sees in the enum that a number is still 'free' and then uses that number, unaware that some NPC conversation also evaluates that flag or sets it. Possible results range from NPC never says a few lines to I talked to Dimitri, that suddenly triggered all the rebels, and now my team is dead in the rebel basement ten minutes after gamestart.
Luckily this hasn't occured until now, Sirtech avoided that and just didn't list these numbers, the lazy gits. My code additions also don't do that, because I'm lucky awesome.
I've gone over all the stock .npc files in r8570 and added all relevant numbers to the enum in Quests.h. Below are now the known facts:
Toggle Spoiler
// FACTS
enum Facts
{
// city liberations
FACT_OMERTA_LIBERATED = 0,
FACT_DRASSEN_LIBERATED, // 1
FACT_SANMONA_LIBERATED, // 2
FACT_CAMBRIA_LIBERATED, // 3
FACT_ALMA_LIBERATED, // 4
FACT_GRUMM_LIBERATED, // 5
FACT_TIXA_LIBERATED, // 6
FACT_CHITZENA_LIBERATED,// 7
FACT_ESTONI_LIBERATED, // 8
FACT_BALIME_LIBERATED, // 9
FACT_ORTA_LIBERATED, // 10
FACT_MEDUNA_LIBERATED, // 11
// quest stuff
FACT_MIGUEL_FOUND, // 12
FACT_LETTER_DELIVERED, // 13
FACT_FOOD_ROUTE_EXISTS, // 14
FACT_DIMITRI_DEAD, // 15
FACT_CONVO_FATIMA_1,
FACT_CONVO_CARLOS_1,
FACT_CONVO_FATIMA_2,
FACT_CONVO_FATIMA_3,
FACT_CONVO_DIMITRI = 20,
FACT_CONVO_CARLOS_2,
FACT_CONVO_MIGUEL_1,
FACT_MIGUEL_READ_LETTER = 23,
FACT_CONVO_IRA,
// rebels do not trust player
FACT_REBELS_HATE_PLAYER = 25,
FACT_CONVO_FATIMA_4,
FACT_CONVO_MIGUEL_2,
FACT_CONVO_MIGUEL_IRA,
FACT_PACOS_KILLED = 29,
FACT_CONVO_PACOS,
FACT_CURRENT_SECTOR_IS_SAFE = 31,
FACT_BOBBYRAY_SHIPMENT_IN_TRANSIT, // 32
FACT_NEW_BOBBYRAY_SHIPMENT_WAITING, // 33
FACT_REALLY_NEW_BOBBYRAY_SHIPMENT_WAITING,// 34
FACT_LARGE_SIZED_OLD_SHIPMENT_WAITING,// 35
FACT_PLAYER_FOUND_ITEMS_MISSING,// 36
FACT_PABLO_PUNISHED_BY_PLAYER,// 37
FACT_CONVO_PABLO_1,
FACT_PABLO_RETURNED_GOODS = 39,
FACT_MIGUEL_AND_ALL_REBELS_CAN_BE_RECRUITED,// 40
FACT_PABLOS_BRIBED = 41,
FACT_ESCORTING_SKYRIDER,// 42
FACT_SKYRIDER_CLOSE_TO_CHOPPER,// 43
FACT_CONVO_SKYRIDER_1,
FACT_SKYRIDER_USED_IN_MAPSCREEN = 45,
FACT_NPC_OWED_MONEY,// 46
FACT_NPC_WOUNDED,// 47
FACT_NPC_WOUNDED_BY_PLAYER,// 48
FACT_CONVO_FATHER_1,
FACT_IRA_NOT_PRESENT = 50,
FACT_IRA_TALKING,// 51
FACT_FOOD_QUEST_OVER,// 52
FACT_PABLOS_STOLE_FROM_LATEST_SHIPMENT,// 53
FACT_LAST_SHIPMENT_CRASHED,// 54
FACT_LAST_SHIPMENT_WENT_TO_WRONG_AIRPORT,// 55
FACT_SHIPMENT_DELAYED_24_HOURS,// 56
FACT_PACKAGE_DAMAGED,// 57
FACT_PACKAGE_LOST_PERMANENTLY,// 58
FACT_NEXT_PACKAGE_CAN_BE_LOST,// 59
FACT_NEXT_PACKAGE_CAN_BE_DELAYED,// 60
FACT_MEDIUM_SIZED_SHIPMENT_WAITING,// 61
FACT_LARGE_SIZED_SHIPMENT_WAITING,// 62
FACT_DOREEN_HAD_CHANGE_OF_HEART,// 63
FACT_CONVO_GORDON,
FACT_IRA_UNHIRED_AND_ALIVE = 65,
FACT_CONVO_DYNAMO_1,
FACT_CONVO_DYNAMO_2,
FACT_NPC_BLEEDING = 68,
FACT_CONVO_SHANK_1,
FACT_NPC_BLEEDING_BUT_OKAY = 70,
FACT_PLAYER_HAS_HEAD_AND_CARMEN_IN_SAN_MONA,// 71
FACT_PLAYER_HAS_HEAD_AND_CARMEN_IN_CAMBRIA,// 72
FACT_PLAYER_HAS_HEAD_AND_CARMEN_IN_DRASSEN,// 73
FACT_FATHER_DRUNK,// 74
FACT_WOUNDED_MERCS_NEARBY,// 75
FACT_ONE_WOUNDED_MERC_NEARBY,// 76
FACT_MULTIPLE_WOUNDED_MERCS_NEARBY,// 77
FACT_BRENDA_IN_STORE_AND_ALIVE,// 78
FACT_BRENDA_DEAD,// 79
FACT_CONVO_BRENDA_1,
FACT_NPC_IS_ENEMY = 81,
FACT_PC_STRONG_AND_LESS_THAN_3_MALES_PRESENT,// 82
FACT_PC_STRONG_AND_3_PLUS_MALES_PRESENT,// 83
FACT_CONVO_HANS,
FACT_HANS_AT_SPOT = 85,
FACT_TONY_NOT_AVAILABLE,// 86
FACT_FEMALE_SPEAKING_TO_NPC,// 87
FACT_PLAYER_USED_BROTHEL,// 88
FACT_CARLA_AVAILABLE,// 89
FACT_CINDY_AVAILABLE,// 90
FACT_BAMBI_AVAILABLE,// 91
FACT_NO_GIRLS_AVAILABLE,// 92
FACT_PLAYER_WAITED_FOR_GIRL,// 93
FACT_PLAYER_PAID_RIGHT_AMOUNT,// 94
FACT_PLAYER_PASSED_GOON,// 95
FACT_MULTIPLE_MERCS_CLOSE ,// 96,
FACT_SOME_MERCS_CLOSE,// 97
FACT_CONVO_KINGPIN_1,
FACT_DARREN_EXPECTING_MONEY = 99,
FACT_PC_NEAR,// 100
FACT_CARMEN_IN_C5,// 101
FACT_CARMEN_EXPLAINED_DEAL,// 102
FACT_KINGPIN_KNOWS_MONEY_GONE,// 103
FACT_PLAYER_REPAID_KINGPIN,// 104
FACT_FRANK_HAS_BEEN_BRIBED,// 105
FACT_CONVO_DARREN,
FACT_PAST_CLUB_CLOSING_AND_PLAYER_WARNED = 107,
FACT_JOEY_ESCORTED,// 108
FACT_JOEY_IN_C5,// 109
FACT_JOEY_NEAR_MARTHA,// 110
FACT_JOEY_DEAD,// 111
FACT_MERC_NEAR_MARTHA,// 112
FACT_SPIKE_AT_DOOR,// 113
FACT_CONVO_ANGEL_1,
FACT_ANGEL_SOLD_VEST = 115,
FACT_MARIA_ESCORTED,// 116
FACT_MARIA_ESCORTED_AT_LEATHER_SHOP,// 117
FACT_PLAYER_WANTS_TO_BUY_LEATHER_VEST,// 118
FACT_MARIA_ESCAPE_NOTICED,// 119
FACT_ANGEL_LEFT_DEED,// 120
FACT_CONVO_ANGEL_2,
FACT_NPC_BANDAGED_TODAY = 122,
FACT_CONVO_DOREEN_1,
FACT_PABLO_WONT_STEAL = 124,
FACT_AGENTS_PREVENTED_SHIPMENT,// 125
// anv: it was 126 in Waldo script
FACT_HELICOPTER_IN_PERFECT_CONDITION = 126,
FACT_LARGE_AMOUNT_OF_MONEY = 127,
FACT_SMALL_AMOUNT_OF_MONEY,// 128
// anv: it was 130 in Waldo script
FACT_HELICOPTER_LOST = 130,
FACT_CONVO_WALDO,
FACT_CONVO_FATHER_2,
FACT_CONVO_FATHER_3,
FACT_CONVO_FATHER_4,
FACT_LOYALTY_OKAY = 135,
FACT_LOYALTY_LOW,// 136
FACT_LOYALTY_HIGH,// 137
FACT_PLAYER_DOING_POORLY,// 138
FACT_CONVO_CARMEN_1,
FACT_CURRENT_SECTOR_G9 = 140,
FACT_CURRENT_SECTOR_C5,// 141
FACT_CURRENT_SECTOR_C13,// 142
FACT_CARMEN_HAS_TEN_THOUSAND,// 143
FACT_SLAY_HIRED_AND_WORKED_FOR_48_HOURS,// 144
FACT_CONVO_CARMEN_2,
FACT_SLAY_IN_SECTOR = 146,
FACT_CONVO_CARMEN_3,
FACT_VINCE_EXPLAINED_HAS_TO_CHARGE = 148,
FACT_VINCE_EXPECTING_MONEY,// 149
FACT_PLAYER_STOLE_MEDICAL_SUPPLIES,// 150
FACT_PLAYER_STOLE_MEDICAL_SUPPLIES_AGAIN,// 151
FACT_VINCE_RECRUITABLE,// 152
FACT_CONVO_VINCE = 154,
FACT_SLAY_OFFERED_DEAL = 155,
FACT_ALL_TERRORISTS_KILLED = 156,
FACT_ELGIN_ALIVE,// 157
FACT_CONVO_MARIA_1,
FACT_CONVO_SKYRIDER_2,
FACT_CONVO_JOEY_1,
FACT_CONVO_JOHN_1,
FACT_CONVO_MARY,
FACT_CONVO_WALTER,
FACT_SHANK_IN_SQUAD_BUT_NOT_SPEAKING = 164,
FACT_CONVO_MADDOG_1,
FACT_CONVO_JAKE,
FACT_SHANK_NOT_IN_SECTOR = 167,
FACT_BLOODCAT_QUEST_STARTED_TWO_DAYS_AGO,// 168
FACT_CONVO_ARMAND,
FACT_QUEEN_DEAD = 170,
FACT_SPEAKER_AIM_OR_AIM_NEARBY = 171,
FACT_MINE_EMPTY,// 172
FACT_MINE_RUNNING_OUT,// 173
FACT_MINE_PRODUCING_BUT_LOYALTY_LOW,// 174
FACT_CREATURES_IN_MINE,// 175
FACT_PLAYER_LOST_MINE,// 176
FACT_MINE_AT_FULL_PRODUCTION,// 177
FACT_DYNAMO_SPEAKING_OR_NEARBY,// 178
FACT_CHALICE_STOLEN = 184,
FACT_JOHN_EPC,// 185
FACT_JOHN_AND_MARY_EPCS,// 186
FACT_MARY_ALIVE,// 187
FACT_MARY_EPC,// 188
FACT_MARY_BLEEDING,// 189
FACT_JOHN_ALIVE,// 190
FACT_JOHN_BLEEDING,// 191
FACT_MARY_OR_JOHN_ARRIVED,// 192
FACT_MARY_DEAD,// 193
FACT_MINERS_PLACED,// 194
FACT_KROTT_GOT_ANSWER_NO,// 195
FACT_CONVO_MADLAB_1,
FACT_MADLAB_EXPECTING_FIREARM = 197,
FACT_MADLAB_EXPECTING_VIDEO_CAMERA,// 198
FACT_ITEM_POOR_CONDITION,// 199
FACT_CONVO_MADLAB_2,
FACT_CONVO_MADLAB_3,
FACT_ROBOT_READY = 202,
FACT_FIRST_ROBOT_DESTROYED,// 203
FACT_MADLAB_HAS_GOOD_CAMERA,// 204
FACT_ROBOT_READY_SECOND_TIME,// 205
FACT_SECOND_ROBOT_DESTROYED,// 206
FACT_CONVO_FRED_MATT,
FACT_DYNAMO_IN_J9 = 208,
FACT_DYNAMO_ALIVE,// 209
FACT_ANOTHER_FIGHT_POSSIBLE,// 210
FACT_RECEIVING_INCOME_FROM_DCAC,// 211
FACT_PLAYER_BEEN_TO_K4,// 212
FACT_CONVO_BREWSTER_1,
FACT_WARDEN_DEAD = 214,
FACT_CONVO_ERNEST,
FACT_FIRST_BARTENDER = 216,
FACT_SECOND_BARTENDER,// 217
FACT_THIRD_BARTENDER,// 218
FACT_FOURTH_BARTENDER,// 219
FACT_MANNY_IS_BARTENDER,// 220
FACT_NOTHING_REPAIRED_YET,// 221,
FACT_CONVO_DAVE_1 = 223,
FACT_OK_USE_HUMMER = 224,
FACT_CONVO_DAVE_2,
FACT_DAVE_HAS_GAS = 226,
FACT_VEHICLE_PRESENT,// 227
FACT_FIRST_BATTLE_WON,// 228
FACT_ROBOT_RECRUITED_AND_MOVED,// 229
FACT_NO_CLUB_FIGHTING_ALLOWED,// 230
FACT_PLAYER_FOUGHT_THREE_TIMES_TODAY,// 231
FACT_PLAYER_SPOKE_TO_DRASSEN_MINER,// 232
FACT_PLAYER_DOING_WELL,// 233
FACT_PLAYER_DOING_VERY_WELL,// 234
FACT_FATHER_DRUNK_AND_SCIFI_OPTION_ON,// 235
FACT_MICKY_DRUNK,// 236
FACT_PLAYER_FORCED_WAY_INTO_BROTHEL,// 237
FACT_CONVO_RAT_1,
FACT_PLAYER_PAID_FOR_TWO_IN_BROTHEL = 239,
FACT_CONVO_GABBY_1,
FACT_CONVO_RAT_GABBY,
FACT_PLAYER_OWNS_2_TOWNS_INCLUDING_OMERTA = 242,
FACT_PLAYER_OWNS_3_TOWNS_INCLUDING_OMERTA,// 243
FACT_PLAYER_OWNS_4_TOWNS_INCLUDING_OMERTA,// 244
FACT_DIMITRI_CAN_BE_RECRUITED,// 245
FACT_MALE_SPEAKING_FEMALE_PRESENT = 248,
FACT_HICKS_MARRIED_PLAYER_MERC,// 249
FACT_MUSEUM_OPEN,// 250
FACT_BROTHEL_OPEN,// 251
FACT_CLUB_OPEN,// 252
FACT_FIRST_BATTLE_FOUGHT,// 253
FACT_FIRST_BATTLE_BEING_FOUGHT,// 254
FACT_KINGPIN_INTRODUCED_SELF,// 255
FACT_KINGPIN_NOT_IN_OFFICE,// 256
FACT_DONT_OWE_KINGPIN_MONEY,// 257
FACT_PC_MARRYING_DARYL_IS_FLO,// 258
// HEADROCK HAM 3.6: Renamed this. It is no longer necessarily at I16.
FACT_BLOODCAT_LAIR_CLEANED,// 259
FACT_NPC_COWERING = 261,
FACT_TOP_AND_BOTTOM_LEVELS_CLEARED = 264,
FACT_TOP_LEVEL_CLEARED,// 265
FACT_BOTTOM_LEVEL_CLEARED,// 266
FACT_NEED_TO_SAY_SOMETHING,// 267
FACT_ATTACHED_ITEM_BEFORE,// 268
FACT_SKYRIDER_EVER_ESCORTED,// 269
FACT_NPC_NOT_UNDER_FIRE,// 270
FACT_WILLIS_HEARD_ABOUT_JOEY_RESCUE,// 271
FACT_WILLIS_GIVES_DISCOUNT,// 272
FACT_HILLBILLIES_KILLED,// 273
FACT_KEITH_OUT_OF_BUSINESS, // 274
FACT_MIKE_AVAILABLE_TO_ARMY,// 275
FACT_KINGPIN_CAN_SEND_ASSASSINS,// 276
FACT_ESTONI_REFUELLING_POSSIBLE,// 277
FACT_MUSEUM_ALARM_WENT_OFF,// 278
FACT_CONVO_KYLE,
FACT_MADDOG_IS_SPEAKER = 280,
FACT_VAN_HAUSSEN_EXPLAINED_BOXING_RULES = 281,
FACT_ANGEL_MENTIONED_DEED = 282,
FACT_IGGY_AVAILABLE_TO_ARMY,// 283
FACT_PC_HAS_CONRADS_RECRUIT_OPINION,// 284
FACT_CONVO_ANGEL_3,
FACT_CONVO_ANGEL_4,
FACT_CONVO_ANGEL_5,
FACT_NPC_HOSTILE_OR_PISSED_OFF = 289,
FACT_CONVO_KINGPIN_2,
FACT_TONY_IN_BUILDING = 291,
FACT_SHANK_SPEAKING = 292,
FACT_PABLO_ALIVE,// 293
FACT_DOREEN_ALIVE,// 294
FACT_WALDO_ALIVE,// 295
FACT_PERKO_ALIVE,// 296
FACT_TONY_ALIVE,// 297
FACT_CONVO_TONY,
FACT_VINCE_ALIVE = 299,
FACT_JENNY_ALIVE,// 300
FACT_CONVO_SHANK_DYNAMO_BREWSTER,
FACT_CONVO_ARNOLD,
FACT_ARNOLD_ALIVE = 303,
FACT_ROCKET_RIFLE_EXISTS,// 304,
FACT_24_HOURS_SINCE_JOEY_RESCUED,// 305
FACT_24_HOURS_SINCE_DOCTOR_TALKED_TO, // 306
FACT_OK_USE_ICECREAM, // 307
FACT_KINGPIN_DEAD,// 308
FACT_CONVO_KINGPIN_3,
FACT_CONVO_DOREEN_2,
FACT_CONVO_DOREEN_JOE,
FACT_CONVO_JOE_2,
FACT_CONVO_JOE_3 = 314,
FACT_CONVO_JOE_4,
FACT_CONVO_JOE_5,
FACT_CONVO_JOE_6,
FACT_KIDS_ARE_FREE = 318,
FACT_PLAYER_IN_SAME_ROOM,// 319
FACT_CONVO_BRENDA_2,
FACT_CONVO_BRENDA_3,
FACT_CONVO_MARIA_2,
FACT_PLAYER_IN_CONTROLLED_DRASSEN_MINE = 324,
FACT_PLAYER_SPOKE_TO_CAMBRIA_MINER,// 325
FACT_PLAYER_IN_CONTROLLED_CAMBRIA_MINE,// 326
FACT_PLAYER_SPOKE_TO_CHITZENA_MINER,// 327
FACT_PLAYER_IN_CONTROLLED_CHITZENA_MINE,// 328
FACT_PLAYER_SPOKE_TO_ALMA_MINER,// 329
FACT_PLAYER_IN_CONTROLLED_ALMA_MINE,// 330
FACT_PLAYER_SPOKE_TO_GRUMM_MINER,// 331
FACT_PLAYER_IN_CONTROLLED_GRUMM_MINE,// 332
FACT_CONVO_GENERAL_MADLAB,
FACT_LARRY_CHANGED = 334,
FACT_PLAYER_KNOWS_ABOUT_BLOODCAT_LAIR,// 335
FACT_HOSPITAL_FREEBIE_DECISION_MADE,// 336
FACT_ENOUGH_LOYALTY_TO_TRAIN_MILITIA,// 337
FACT_WALKER_AT_BAR,// 338
FACT_CONVO_DAVE_3,
FACT_JOEY_ALIVE = 340,
FACT_UNPROPOSITIONED_FEMALE_SPEAKING_TO_NPC,// 341
FACT_84_AND_85_TRUE,// 342
FACT_CONVO_DAVE_4,
FACT_CONVO_JOHN_2 = 345,
FACT_CONVO_SKYRIDER_3,
FACT_CONVO_JOEY_2,
FACT_CONVO_IGGY,
FACT_KINGPIN_WILL_LEARN_OF_MONEY_GONE = 350,
FACT_CONVO_MADDOG_2,
FACT_CONVO_MADLAB_4,
FACT_CONVO_MADLAB_5,
FACT_SKYRIDER_IN_B15 = 354,
FACT_SKYRIDER_IN_C16,// 355
FACT_SKYRIDER_IN_E14,// 356
FACT_SKYRIDER_IN_D12,// 357
FACT_SKYRIDER_HINT_GIVEN,// 358
FACT_KINGPIN_IS_ENEMY,// 359
FACT_BRENDA_PATIENCE_TIMER_EXPIRED,// 360
FACT_CONVO_MATT,
FACT_DYNAMO_NOT_SPEAKER = 362,
FACT_PABLO_BRIBED = 365,
FACT_CONVO_PABLO_2,
FACT_CONRAD_SHOULD_GO = 367,
FACT_PLAYER_KILLED_BOXERS = 368,
FACT_UNUSED = 369,
// anv: Waldo The Mechanic, facts for his dialogue
FACT_HELI_DAMAGED_CAN_START_REPAIR,
FACT_HELI_SERIOUSLY_DAMAGED_CAN_START_REPAIR,
FACT_GIVEN_ENOUGH_TO_REPAIR_HELI,
FACT_GIVEN_ENOUGH_TO_SERIOUSLY_REPAIR_HELI,
FACT_HELI_GIVEN_MONEY_CAN_START_REPAIR,
FACT_HELI_CANT_START_REPAIR,
FACT_WALDO_MET,
// Flugente: disease
FACT_DISEASE_VIEWED,
FACT_DISEASE_WHODATA_SUBSCRIBED, // if we are currently subscripted, we will pay x$ per day
FACT_DISEASE_WHODATA_ACCESS, // do we currently have access to the data
// Flugente: Kingpin bounty hunter quest
FACT_BOUNTYHUNTER_SECTOR_1,
FACT_BOUNTYHUNTER_SECTOR_2,
FACT_BOUNTYHUNTER_KILLED_1,
FACT_BOUNTYHUNTER_KILLED_2,
// Flugente: for safety reasons, remember if we've already had an offensive
FACT_GLOBAL_OFFENSIVE_1_ORDERED,
FACT_GLOBAL_OFFENSIVE_2_ORDERED,
// Flugente: do we know of today's raids?
FACT_RAID_KNOWN_BLOODCATS,
FACT_RAID_KNOWN_ZOMBIES,
FACT_RAID_KNOWN_BANDITS,
// Flugente: do we know of the location of the terrorists?
FACT_TERRORIST_LOCATION_KNOWN_SLAY,
FACT_TERRORIST_LOCATION_KNOWN_ANNIE,
FACT_TERRORIST_LOCATION_KNOWN_CHRIS,
FACT_TERRORIST_LOCATION_KNOWN_TIFFANY,
FACT_TERRORIST_LOCATION_KNOWN_T_REX,
FACT_TERRORIST_LOCATION_KNOWN_DRUGGIST,
#ifdef JA2UB
//Ja25 UB
FACT_IMPORTED_SAVE_AND_MARY_WAS_DEAD = 400,
FACT_JOHN_KULBA_OFFERED_TO_BE_RECRUITED,// 401,
FACT_TEX_IS_IN_GAME_AND_ALIVE_IN_STORE,// 402,
FACT_PLAYER_PAID_BETTY_MORE_THEN_X_FOR_ITEM = 403,
FACT_PLAYER_BOUGHT_A_TEX_VIDEO_FROM_BETTY,// 404,
FACT_RAULS_INVENTORY_CHANGED_SINCE_LAST_VISIT,// 405
FACT_PLAYER_THREATENED_RAUL_COUPLE_TIMES,// 406
FACT_PLAYER_BOUGHT_SOMETHING_FROM_RAUL,// 407
// FACT_SKYRIDER_IN_C16,// 408
// FACT_SKYRIDER_IN_C16,// 409
// FACT_SKYRIDER_IN_C16,// 410
// FACT_SKYRIDER_IN_C16,// 411
FACT_PLAYER_BOUGHT_BARRET_FROM_RAUL = 412,
FACT_MERC_SAY_QUOTE_WHEN_TALK_MENU_CLOSES,// 413
FACT_PLAYER_IMPORTED_SAVE_MIGUEL_DEAD,// 414
FACT_PLAYER_IMPORTED_SAVE_FATIMA_OR_PACOS_DEAD,// 415
FACT_PLAYER_IMPORTED_SAVE_CARLOS_DEAD,// 416
FACT_PLAYER_IMPORTED_SAVE_IRA_DEAD,// 417
FACT_PLAYER_IMPORTED_SAVE_DIMITRI_DEAD,// 418
FACT_PLAYER_IMPORTED_SAVE,// 419
FACT_PLAYER_KILLED_ALL_BETTYS_BLOODCATS,// 420
FACT_BIGGENS_IS_ON_TEAM,// 421
FACT_FAN_STOPPPED,// 422
FACT_BIGGENS_ON_TEAM_AND_FAN_STOPPED,// 423
FACT_PLAYER_KNOWS_ABOUT_FAN_STOPPING,// 424
#endif
FACT_CONVO_MANUEL = 430,
} ;
//** END FACTS *************************
Q: I am a coder who wants to code new quest stuff. What does this mean for me?
A: Hu. Where have you been all these years, you lazy bastard? Whatever. Don't use the numbers already used in the array above and you're good (and add whatever facts you are introducing).
Q: I am a modder and have added new NPCs or altered existing .npc files in my mods. What does this mean for me?
A: Check whether any of your .npc files (not the one in stock, I've checked those and added what was missing to the above array) for usSetFactTrue (or called sth. similar). If that number is neither 0 nor 65535, check whether that number is in conflict with the above. If it is already in use, move it (not necessary if you replaced the original NPC that set it, duh).
Q: I am a player. What does this mean for me?
A: Nothing, unless the modder of a mod you play tells you otherwise. In case this inexplicably saddens you, here is an owl to distract you.
[Updated on: Sun, 10 June 2018 10:29]
I know now that it could never work between us, as much as we wanted to, it could never be! Not because you're a rabbit, but because you're black.
If you want, you can donate to me. This will not affect how and what I code, and I will not code specific features in return. I will be thankful though.Report message to a moderator
|
|
|
|
|
|
Absurdly small code changes
By: Flugente on Fri, 04 January 2013 22:49
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: LatZee on Fri, 08 July 2016 23:13
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Wed, 13 July 2016 01:09
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Sun, 17 July 2016 18:35
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 03 August 2016 20:21
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 07 October 2016 22:18
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 14 October 2016 23:54
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 16 October 2016 17:09
|
|
|
Re: Absurdly small code changes
By: ratpaz on Mon, 17 October 2016 16:03
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: funk on Mon, 17 October 2016 19:41
|
|
|
Re: Absurdly small code changes
By: Deleted. on Tue, 18 October 2016 15:27
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 19 October 2016 23:00
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 24 October 2016 23:01
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 31 December 2016 14:38
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 06 January 2017 03:29
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 06 January 2017 14:28
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 12 January 2017 00:44
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 13 January 2017 02:01
|
|
|
Re: Absurdly small code changes
By: grim on Fri, 13 January 2017 04:13
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 15 January 2017 00:24
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 15 January 2017 00:49
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 16 January 2017 01:50
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: grim on Mon, 16 January 2017 11:46
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 22 January 2017 22:16
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 26 January 2017 22:55
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 28 January 2017 00:41
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 29 January 2017 14:57
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 29 January 2017 22:51
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 30 January 2017 22:18
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Torres on Thu, 09 February 2017 03:05
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 11 March 2017 21:01
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Buggler on Wed, 26 July 2017 06:08
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Deleted. on Mon, 16 November 2020 23:07
|
|
|
Re: Absurdly small code changes
By: Kurt on Mon, 28 September 2020 17:35
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 29 August 2017 01:15
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 24 September 2017 18:49
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 29 September 2017 23:03
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 01 November 2017 01:01
|
|
|
Re: Absurdly small code changes
By: Deleted. on Wed, 01 November 2017 16:12
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 01 November 2017 18:55
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 21 February 2018 20:56
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 22 February 2018 20:59
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Sat, 24 February 2018 16:00
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 04 March 2018 23:24
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 15 April 2018 17:49
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: kmoi on Thu, 02 December 2021 16:14
|
|
|
Re: Absurdly small code changes
By: grim on Thu, 17 May 2018 01:14
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: townltu on Sun, 10 June 2018 11:19
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Wed, 31 October 2018 21:42
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Thu, 01 November 2018 01:38
|
|
|
Re: Absurdly small code changes
By: KrAhS on Tue, 07 December 2021 03:12
|
|
|
Re: Absurdly small code changes
By: Deleted. on Tue, 07 December 2021 14:00
|
|
|
Re: Absurdly small code changes
By: Kitty on Tue, 07 December 2021 22:39
|
|
|
Re: Absurdly small code changes
By: KrAhS on Wed, 08 December 2021 00:28
|
|
|
Re: Absurdly small code changes
By: KrAhS on Thu, 09 December 2021 06:04
|
|
|
Re: Absurdly small code changes
By: Deleted. on Thu, 09 December 2021 08:13
|
|
|
Re: Absurdly small code changes
By: KrAhS on Thu, 09 December 2021 08:16
|
|
|
Re: Absurdly small code changes
By: Asdow on Sat, 22 January 2022 12:39
|
|
|
Re: Absurdly small code changes
By: Uriens on Sat, 05 January 2013 01:18
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 06 January 2013 05:16
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 01 August 2018 22:22
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Sat, 04 August 2018 20:16
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Sat, 04 August 2018 22:39
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 15 August 2018 22:41
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Mon, 27 August 2018 04:05
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 29 August 2018 00:32
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Wed, 29 August 2018 23:26
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 01 September 2018 00:46
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 30 September 2018 23:20
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 06 October 2018 20:47
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Sun, 21 October 2018 09:38
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Deleted. on Wed, 31 October 2018 17:37
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: zwwooooo on Tue, 27 November 2018 18:44
|
|
|
Re: Absurdly small code changes
By: zwwooooo on Wed, 28 November 2018 07:46
|
|
|
Re: Absurdly small code changes
By: Deleted. on Mon, 03 December 2018 17:06
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Mon, 03 December 2018 22:01
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Tue, 04 December 2018 06:02
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 29 January 2019 00:47
|
|
|
Re: Absurdly small code changes
By: Deleted. on Tue, 29 January 2019 00:59
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 29 January 2019 01:52
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 11 February 2019 00:02
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 16 February 2019 01:10
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 17 February 2019 01:32
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 17 February 2019 21:53
|
|
|
Re: Absurdly small code changes
By: Deleted. on Mon, 18 February 2019 17:55
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 18 February 2019 22:21
|
|
|
Re: Absurdly small code changes
By: Deleted. on Sun, 10 March 2019 18:55
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Mon, 15 April 2019 07:46
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Mon, 15 April 2019 08:03
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 16 April 2019 01:50
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Tue, 16 April 2019 07:08
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Kitty on Sun, 05 May 2019 18:41
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 16 April 2019 01:46
|
|
|
Re: Absurdly small code changes
By: Slax on Sun, 06 January 2013 06:15
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 06 January 2013 15:44
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 06 January 2013 19:20
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 06 January 2013 19:45
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 06 January 2013 19:59
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Sun, 06 January 2013 21:53
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: lockie on Mon, 07 January 2013 19:17
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 12 January 2013 23:15
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 20 January 2013 06:02
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 20 January 2013 06:10
|
|
|
Re: Absurdly small code changes
By: mr_clark on Sun, 20 January 2013 14:09
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 25 February 2013 23:19
|
|
|
Re: Absurdly small code changes
By: Uriens on Tue, 26 February 2013 00:58
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 05 March 2013 22:31
|
|
|
Re: Absurdly small code changes
By: Hazapuza on Tue, 05 March 2013 23:38
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 05 March 2013 23:46
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 06 March 2013 01:34
|
|
|
Re: Absurdly small code changes
By: merc05 on Sun, 10 March 2013 16:17
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 10 March 2013 16:22
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 29 March 2013 23:38
|
|
|
Re: Absurdly small code changes
By: Parkan on Sat, 30 March 2013 12:21
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 30 March 2013 14:38
|
|
|
Re: Absurdly small code changes
By: Parkan on Sat, 30 March 2013 14:44
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 03 April 2013 21:24
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 03 April 2013 22:15
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 03 April 2013 22:25
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 03 April 2013 23:04
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 03 April 2013 23:13
|
|
|
Re: Absurdly small code changes
By: Erzengel on Thu, 04 April 2013 03:28
|
|
|
Re: Absurdly small code changes
By: Thor on Thu, 04 April 2013 03:54
|
|
|
Re: Absurdly small code changes
By: Erzengel on Thu, 04 April 2013 11:54
|
|
|
Re: Absurdly small code changes
By: krux on Fri, 05 April 2013 00:34
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 11 April 2013 01:32
|
|
|
Re: Absurdly small code changes
By: merc05 on Thu, 11 April 2013 18:11
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 11 April 2013 23:25
|
|
|
Re: Absurdly small code changes
By: krux on Sun, 14 April 2013 03:57
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 14 April 2013 14:55
|
|
|
Re: Absurdly small code changes
By: Parkan on Tue, 30 April 2013 22:47
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Wed, 01 May 2013 15:48
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Thor on Thu, 02 May 2013 00:19
|
|
|
Re: Absurdly small code changes
By: Parkan on Thu, 02 May 2013 00:25
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Thor on Thu, 02 May 2013 07:29
|
|
|
Re: Absurdly small code changes
By: Parkan on Thu, 02 May 2013 11:17
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Thor on Thu, 02 May 2013 21:23
|
|
|
Re: Absurdly small code changes
By: Parkan on Thu, 02 May 2013 21:38
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: merc05 on Fri, 03 May 2013 16:24
|
|
|
Re: Absurdly small code changes
By: lockie on Fri, 03 May 2013 16:27
|
|
|
Re: Absurdly small code changes
By: 188man on Sat, 04 May 2013 04:19
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: buuface on Thu, 09 May 2013 12:25
|
|
|
Re: Absurdly small code changes
By: Parkan on Sat, 25 May 2013 13:07
|
|
|
Re: Absurdly small code changes
By: Lexx on Sat, 25 May 2013 13:44
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Lexx on Sat, 25 May 2013 14:13
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Lexx on Sat, 25 May 2013 14:23
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Sat, 25 May 2013 23:34
|
|
|
Re: Absurdly small code changes
By: Parkan on Mon, 27 May 2013 01:36
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Mon, 27 May 2013 02:07
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Wil473 on Sun, 16 June 2013 17:13
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Wil473 on Sun, 16 June 2013 17:25
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Wil473 on Sun, 16 June 2013 18:05
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Wil473 on Sun, 16 June 2013 18:44
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Tue, 25 June 2013 17:50
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Fri, 28 June 2013 11:13
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Fri, 28 June 2013 17:54
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Fri, 28 June 2013 22:09
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 09 August 2013 00:32
|
|
|
Re: Absurdly small code changes
By: Deleted. on Wed, 14 August 2013 19:52
|
|
|
Re: Absurdly small code changes
By: Bambusar on Thu, 15 August 2013 06:50
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: merc05 on Sun, 18 August 2013 16:24
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 18 August 2013 20:15
|
|
|
Re: Absurdly small code changes
By: merc05 on Sun, 18 August 2013 21:35
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 18 August 2013 21:47
|
|
|
Re: Absurdly small code changes
By: merc05 on Mon, 19 August 2013 00:20
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 19 August 2013 00:49
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 19 August 2013 22:06
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Shadow21 on Tue, 20 August 2013 00:18
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 20 August 2013 00:41
|
|
|
Re: Absurdly small code changes
By: acqsen on Fri, 23 August 2013 13:15
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 24 August 2013 00:23
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 25 August 2013 15:17
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 25 August 2013 17:57
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 25 August 2013 18:34
|
|
|
Re: Absurdly small code changes
By: acqsen on Mon, 26 August 2013 14:49
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 27 August 2013 00:41
|
|
|
Re: Absurdly small code changes
By: krux on Fri, 30 August 2013 13:27
|
|
|
Re: Absurdly small code changes
By: acqsen on Fri, 30 August 2013 17:06
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 02 September 2013 21:25
|
|
|
Re: Absurdly small code changes
By: Uriens on Mon, 02 September 2013 21:35
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Thu, 05 September 2013 15:59
|
|
|
Re: Absurdly small code changes
By: Wil473 on Thu, 05 September 2013 16:24
|
|
|
Re: Absurdly small code changes
By: Parkan on Thu, 05 September 2013 16:44
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 05 September 2013 23:05
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 17 September 2013 22:35
|
|
|
Re: Absurdly small code changes
By: lockie on Tue, 17 September 2013 22:36
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Sam Hotte on Tue, 17 September 2013 23:51
|
|
|
Re: Absurdly small code changes
By: pheloncab on Wed, 18 September 2013 04:16
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Randok on Thu, 19 September 2013 10:41
|
|
|
Re: Absurdly small code changes
By: Slax on Fri, 20 September 2013 20:31
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 21 September 2013 00:11
|
|
|
Re: Absurdly small code changes
By: lockie on Sat, 21 September 2013 18:36
|
|
|
Re: Absurdly small code changes
By: Slax on Sat, 21 September 2013 19:38
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Moa on Wed, 25 September 2013 04:54
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Moa on Sat, 19 October 2013 06:54
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Moa on Tue, 22 October 2013 12:14
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: smeagol on Sun, 27 October 2013 19:56
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Tue, 29 October 2013 13:16
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Wed, 30 October 2013 22:55
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Buggler on Wed, 13 November 2013 17:16
|
|
|
Re: Absurdly small code changes
By: tais on Wed, 13 November 2013 18:49
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Buggler on Sun, 17 November 2013 07:30
|
|
|
Re: Absurdly small code changes
By: krux on Sun, 22 December 2013 23:41
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 08 March 2014 00:48
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Thor on Sun, 11 May 2014 14:33
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Buggler on Wed, 06 August 2014 07:31
|
|
|
Re: Absurdly small code changes
By: Buggler on Thu, 21 August 2014 03:20
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 28 August 2014 17:43
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 02 September 2014 23:18
|
|
|
Re: Absurdly small code changes
By: Uriens on Thu, 04 September 2014 20:30
|
|
|
Re: Absurdly small code changes
By: Deleted. on Thu, 04 September 2014 20:35
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 05 September 2014 01:01
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 08 September 2014 21:45
|
|
|
Re: Absurdly small code changes
By: Sargeno on Mon, 08 September 2014 22:19
|
|
|
Re: Absurdly small code changes
By: Slax on Mon, 08 September 2014 22:40
|
|
|
Re: Absurdly small code changes
By: smeagol on Mon, 08 September 2014 23:32
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 10 September 2014 22:59
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 12 September 2014 01:22
|
|
|
Re: Absurdly small code changes
By: Nasenbaer on Fri, 12 September 2014 01:34
|
|
|
Re: Absurdly small code changes
By: Uriens on Fri, 12 September 2014 14:25
|
|
|
Re: Absurdly small code changes
By: Strohmann on Fri, 12 September 2014 17:12
|
|
|
Re: Absurdly small code changes
By: Uriens on Fri, 12 September 2014 23:32
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 13 September 2014 18:05
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 14 October 2014 23:03
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Buggler on Mon, 08 December 2014 14:57
|
|
|
Re: Absurdly small code changes
By: Slax on Thu, 08 January 2015 11:51
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 18 January 2015 00:35
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 12 February 2015 23:07
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 21 February 2015 20:40
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 23 February 2015 01:13
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 07 March 2015 18:02
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 11 March 2015 00:19
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 12 March 2015 23:46
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 16 March 2015 22:36
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 17 March 2015 13:22
|
|
|
Re: Absurdly small code changes
By: Cardinal on Tue, 17 March 2015 02:04
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 01 April 2015 00:05
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 01 April 2015 14:05
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 01 April 2015 19:37
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 03 April 2015 23:20
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 22 April 2015 22:58
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Thu, 23 April 2015 23:55
|
|
|
Re: Absurdly small code changes
By: grim on Fri, 24 April 2015 00:18
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Slax on Mon, 11 May 2015 14:58
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Franimus on Fri, 07 August 2015 00:40
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 07 August 2015 23:11
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 12 August 2015 02:02
|
|
|
Re: Absurdly small code changes
By: Slax on Wed, 12 August 2015 02:09
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 12 August 2015 13:12
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 19 August 2015 23:06
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 26 January 2016 22:06
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 06 February 2016 01:57
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 07 February 2016 03:44
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Wed, 10 February 2016 15:26
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Sun, 14 February 2016 21:47
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 09 March 2016 00:23
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 21 March 2016 21:58
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 27 March 2016 01:22
|
|
|
Re: Absurdly small code changes
By: Hazapuza on Sun, 27 March 2016 02:55
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 27 March 2016 19:23
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 27 March 2016 23:46
|
|
|
Re: Absurdly small code changes
By: Hazapuza on Mon, 28 March 2016 00:20
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 28 March 2016 00:41
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: CVB on Mon, 28 March 2016 04:00
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 28 March 2016 14:37
|
|
|
Re: Absurdly small code changes
By: CVB on Mon, 28 March 2016 15:33
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 28 March 2016 15:44
|
|
|
Re: Absurdly small code changes
By: CVB on Mon, 28 March 2016 16:48
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: CVB on Mon, 28 March 2016 19:32
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 29 March 2016 20:37
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: CVB on Tue, 29 March 2016 22:18
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 03 April 2016 19:41
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 03 April 2016 22:33
|
|
|
Re: Absurdly small code changes
By: CVB on Sun, 03 April 2016 22:42
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 04 April 2016 13:16
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 09 April 2016 00:35
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: CVB on Sun, 10 April 2016 15:39
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: CVB on Tue, 12 April 2016 18:39
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: CVB on Sat, 16 April 2016 11:46
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Wed, 27 May 2015 21:32
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Mon, 20 July 2015 21:14
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Parkan on Tue, 21 July 2015 01:09
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Slax on Thu, 23 July 2015 16:29
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Thu, 03 October 2019 20:31
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Fri, 01 November 2019 01:39
|
|
|
Re: Absurdly small code changes
By: Flugente on Wed, 27 November 2019 23:45
|
|
|
Re: Absurdly small code changes
By: LatZee on Fri, 24 January 2020 09:06
|
|
|
Re: Absurdly small code changes
By: Deleted. on Fri, 24 January 2020 09:16
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: LatZee on Fri, 24 January 2020 15:46
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Deleted. on Fri, 24 January 2020 16:04
|
|
|
Re: Absurdly small code changes
By: LatZee on Fri, 24 January 2020 16:35
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: LatZee on Fri, 24 January 2020 18:20
|
|
|
Re: Absurdly small code changes
By: ZedJA2 on Sun, 26 January 2020 11:05
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: LatZee on Mon, 27 January 2020 16:39
|
|
|
Re: Absurdly small code changes
By: Gopan on Thu, 30 January 2020 04:19
|
|
|
Re: Absurdly small code changes
By: Deleted. on Sat, 22 February 2020 19:13
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Hawkeye on Thu, 16 July 2020 09:10
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Deleted. on Mon, 08 February 2021 22:33
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Uriens on Sun, 20 June 2021 00:23
|
|
|
Re: Absurdly small code changes
By: Kitty on Sun, 20 June 2021 02:43
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 14 August 2021 22:26
|
|
|
Re: Absurdly small code changes
By: Flugente on Sat, 14 August 2021 22:55
|
|
|
Re: Absurdly small code changes
By: Shadooow on Sun, 15 August 2021 00:00
|
|
|
Re: Absurdly small code changes
By: Flugente on Mon, 16 August 2021 23:07
|
|
|
Re: Absurdly small code changes
By: Shadooow on Sun, 22 August 2021 10:26
|
|
|
Re: Absurdly small code changes
By: Deleted. on Sun, 22 August 2021 10:37
|
|
|
Re: Absurdly small code changes
By: Flugente on Sun, 22 August 2021 16:16
|
|
|
Re: Absurdly small code changes
By: Wil473 on Mon, 08 December 2014 15:48
|
|
|
Re: Absurdly small code changes
|
|
|
Re: Absurdly small code changes
By: Flugente on Tue, 06 January 2015 02:58
|
|
|
Re: Absurdly small code changes
By: Buggler on Tue, 06 January 2015 07:29
|
|
|
Re: Absurdly small code changes
|
Goto Forum:
Current Time: Mon Dec 02 09:48:28 GMT+2 2024
Total time taken to generate the page: 0.14445 seconds
|