plakapenka
plakapenka
` hook stock OnIncomingCustomPacket(playerid, rpcid, BitStream:bs) { if(rpcid == RPC_SHOW_FACTORY_GAME) { new exit_type; BS_ReadUint8(bs, exit_type); if (exit_type) { // успешно Zavod_PlayerBuildSucces(playerid); } else { // закрыл SetPVarInt(playerid, "pZavod_State", ZAVOD_PLAYER_STATE_STARTED); }...
incoming code ``` public OnIncomingPacket(playerid, packetid, BitStream:bs) { if(packetid == 251) { new header, rpcid; BS_ReadUint8(bs, header); BS_ReadUint8(bs, rpcid); if(rpcid == 41) { new _strlen, _authKey[65]; BS_ReadUint32(bs, _strlen); BS_ReadString(bs, _authKey,...
i get errors undefined symbol "iterstart@VehicleOccupant"
Could you add the player's id to the default StreamedPlayer[playerid] ? those. so that the iterator includes the playerid
mb bug
### Expected and current behavior ``` static inline uint16& uiTempBufferIndicesStored = *(uint16*)0xC4B954; static inline uint16& uiTempBufferVerticesStored = *(uint16*)0xC4B950; ``` in android int32 type; uint16 - crash maybe this is a...
PR_STRING32 ```BS_WriteValue(bs, PR_STRING32, str);``` заменяет ``` BS_WriteValue(bs, PR_UINT32, strlen(str)); BS_WriteValue(bs, PR_STRING, str, strlen(str)); ``` это работает отлично и удобно. На read я ожидаю увидеть тоже самое, но нет... ``` BS_ReadValue(bs,...
### Expected and current behavior This is a vanilla bug for Android. I don't know for PC ### Additional information i changed `aGS->SetBlendAmount(std::max(0.f, aGS->GetBlendAmount() - CTimer::GetTimeStep() * 0.16f));` 0.f to...
### ShadowHook Version 1.1.1 ### Android OS Version all ### Android ABIs armeabi-v7a ### Device Manufacturers and Models all ### Describe the Bug version 1.1.1 broke the game on emulators....
### Expected and current behavior Hello SA gods) Again, sorry for writing here, you can close without explanation, I will understand. ``` bool CStreaming::TryLoadModel(int modelId) { if(!CStreaming::GetInfo(modelId).IsLoaded()) { CStreaming::RequestModel(modelId, STREAMING_GAME_REQUIRED);...