![]() |
|
#81
|
||||
|
Quote:
| |||
|
|
||||
|
#82
|
|||||
|
Quote:
__________________
I have walked my way since the beginning of time. Sometimes I give, sometimes I take & it is mine to know which and when.
Quote:
| ||||
|
|
|||||
|
#83
|
|||
|
can you set up a script that reads people's guild tags. When over 25 of one guild is in the zone, then the other guilds are kicked out like banish from naggy/vox lair?
| ||
|
|
|||
|
#84
|
|||
|
The problems that need fixing the most are unique to p99 and thus cannot be fixed by a third party =P Send me the p99 source that makes mobs and players ghost/teleport and I'll fix it.
__________________
Jack <Yael Graduates> - Server First Erudite
Bush <Toxic> Jeremy <TMO> - Patron Saint of Blue | ||
|
|
|||
|
#86
|
|||
|
Yay for simulated patch days!
| ||
|
|
|||
|
#87
|
|||||
|
Quote:
Code:
void QuestManager::UpdateSpawnTimer(uint32 id, uint32 newTime)
{
bool found = false;
database.UpdateSpawn2Timeleft(id, 0, (newTime/1000));
LinkedListIterator<Spawn2*> iterator(zone->spawn2_list);
iterator.Reset();
while (iterator.MoreElements())
{
if(iterator.GetData()->GetID() == id)
{
if(!iterator.GetData()->NPCPointerValid())
{
iterator.GetData()->SetTimer(newTime);
}
found = true;
break;
}
iterator.Advance();
}
if(!found)
{
//Spawn wasn't in this zone...
//Tell the other zones to update their spawn time for this spawn point
ServerPacket *pack = new ServerPacket(ServerOP_UpdateSpawn, sizeof(UpdateSpawnTimer_Struct));
UpdateSpawnTimer_Struct *ust = (UpdateSpawnTimer_Struct*)pack->pBuffer;
ust->id = id;
ust->duration = newTime;
worldserver.SendPacket(pack);
safe_delete(pack);
}
}
Anyway, basically I agree with Jeremy: it simply cannot be that hard to implement this, and it would be huge for the community.
__________________
Raev | Loraen | Sakuragi <The A-Team> | Solo Artist Challenge | Farmer's Market
Quote:
| ||||
|
|
|||||
|
#88
|
||||
|
Quote:
I'm not particularly upset about any one fix so if I could just pick one off the top that'd be ideal. I have maybe 4-5 hours a week to contribute check-ins. | |||
|
|
||||
|
#89
|
||||
|
Quote:
I could be mistaken as the thread where I got this information from would be over 2 years old.
__________________
Baalzy - 57 Gnocro, Baalz - 36 Ikscro, Adra - 51 Hileric, Fatbag Ofcrap - 25 halfuid Red99 Baalz Less - Humger, Baalzy - Ikscro If MMORPG players were around when God said, "Let there be light" they'd have called the light gay, and plunged the universe back into darkness by squatting their nutsacks over it. Picture courtesy of azeth | |||
|
|
||||
|
#90
|
||||
|
I am pretty sure when fay troll went out one of the guides told me that they knew when the mob would spawn.
The logical place to apply variance would be when the respawn is calculated (you can even apply extended variance then).
__________________
Raev | Loraen | Sakuragi <The A-Team> | Solo Artist Challenge | Farmer's Market
Quote:
| |||
|
|
||||
![]() |
|
|