A AlessioBene Utente Silver 13 Settembre 2008 49 13 5 76 26 Febbraio 2018 #1 Salve, qualcuno saprebbe aiutarmi a rendere la pozza grande rossa infinita? lato src game? Grazie
S SunJoin Utente Electrum 19 Settembre 2008 445 13 110 172 27 Febbraio 2018 #2 Apri game\src\char_item.cpp Cerca: C++: case USE_POTION_CONTINUE: Sopra quella riga dovresti avere queste 3 linee di codice C++: item->SetCount(item->GetCount() - 1); m_nPotionLimit--; break; Modifica in questo modo: C++: if (item->GetVnum() != 27003) { item->SetCount(item->GetCount() - 1); m_nPotionLimit--; break; }
Apri game\src\char_item.cpp Cerca: C++: case USE_POTION_CONTINUE: Sopra quella riga dovresti avere queste 3 linee di codice C++: item->SetCount(item->GetCount() - 1); m_nPotionLimit--; break; Modifica in questo modo: C++: if (item->GetVnum() != 27003) { item->SetCount(item->GetCount() - 1); m_nPotionLimit--; break; }